@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.
41 lines (38 loc) • 1.44 kB
text/typescript
import { ModelProviderCard } from '@/types/llm';
const DeepSeek: ModelProviderCard = {
chatModels: [
{
contextWindowTokens: 131_072,
description:
'最新模型 DeepSeek-V3 多项评测成绩超越 Qwen2.5-72B 和 Llama-3.1-405B 等开源模型,性能对齐领军闭源模型 GPT-4o 与 Claude-3.5-Sonnet。',
displayName: 'DeepSeek V3.2 Exp',
enabled: true,
functionCall: true,
id: 'deepseek-chat',
},
{
contextWindowTokens: 131_072,
description:
'DeepSeek 推出的推理模型。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
displayName: 'DeepSeek V3.2 Exp Thinking',
enabled: true,
id: 'deepseek-reasoner',
},
],
checkModel: 'deepseek-chat',
description:
'DeepSeek 是一家专注于人工智能技术研究和应用的公司,其最新模型 DeepSeek-V3 多项评测成绩超越 Qwen2.5-72B 和 Llama-3.1-405B 等开源模型,性能对齐领军闭源模型 GPT-4o 与 Claude-3.5-Sonnet。',
id: 'deepseek',
modelList: { showModelFetcher: true },
modelsUrl: 'https://platform.deepseek.com/api-docs/zh-cn/quick_start/pricing',
name: 'DeepSeek',
settings: {
proxyUrl: {
placeholder: 'https://api.deepseek.com',
},
sdkType: 'openai',
showModelFetcher: true,
},
url: 'https://deepseek.com',
};
export default DeepSeek;