UNPKG

@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.

64 lines (60 loc) 1.71 kB
import { AIChatModelCard } from '@/types/aiModel'; const search1apiChatModels: AIChatModelCard[] = [ { abilities: { reasoning: true, search: true, }, contextWindowTokens: 131_072, description: 'DeepSeek R1 70B 标准版,支持实时联网搜索,适合需要最新信息的对话和文本处理任务。', displayName: 'DeepSeek R1 70B', enabled: true, id: 'deepseek-r1-70b-online', maxOutput: 16_384, type: 'chat', }, { abilities: { reasoning: true, search: true, }, contextWindowTokens: 65_536, description: 'DeepSeek R1 满血版,拥有 671B 参数,支持实时联网搜索,具有更强大的理解和生成能力。', displayName: 'DeepSeek R1', enabled: true, id: 'deepseek-r1-online', maxOutput: 8192, type: 'chat', }, { abilities: { reasoning: true, search: true, }, contextWindowTokens: 131_072, description: 'DeepSeek R1 70B 快速版,支持实时联网搜索,在保持模型性能的同时提供更快的响应速度。', displayName: 'DeepSeek R1 70B Fast', enabled: true, id: 'deepseek-r1-70b-fast-online', maxOutput: 16_384, type: 'chat', }, { abilities: { reasoning: true, search: true, }, contextWindowTokens: 163_840, description: 'DeepSeek R1 满血快速版,支持实时联网搜索,结合了 671B 参数的强大能力和更快的响应速度。', displayName: 'DeepSeek R1 Fast', enabled: true, id: 'deepseek-r1-fast-online', maxOutput: 16_384, type: 'chat', }, ]; export const allModels = [...search1apiChatModels]; export default allModels;