mirror of
https://github.com/lobehub/lobe-chat-plugins.git
synced 2026-04-20 01:04:33 +08:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import { ChatOpenAI } from 'langchain/chat_models/openai';
|
|
|
|
import { config } from './const';
|
|
|
|
export const model = new ChatOpenAI(
|
|
{ modelName: config.modelName, temperature: config.temperature, maxRetries: 4 },
|
|
{ baseURL: process.env.OPENAI_PROXY_URL },
|
|
);
|