@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
22 lines (18 loc) • 719 B
text/typescript
import { ModelProvider } from '../types';
import { MODEL_LIST_CONFIGS, processModelList } from '../utils/modelParse';
import { createOpenAICompatibleRuntime } from '../utils/openaiCompatibleFactory';
export interface ZeroOneModelCard {
id: string;
}
export const LobeZeroOneAI = createOpenAICompatibleRuntime({
baseURL: 'https://api.lingyiwanwu.com/v1',
debug: {
chatCompletion: () => process.env.DEBUG_ZEROONE_CHAT_COMPLETION === '1',
},
models: async ({ client }) => {
const modelsPage = (await client.models.list()) as any;
const modelList: ZeroOneModelCard[] = modelsPage.data;
return processModelList(modelList, MODEL_LIST_CONFIGS.zeroone);
},
provider: ModelProvider.ZeroOne,
});