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.

79 lines (75 loc) 2 kB
import { AIChatModelCard } from '@/types/aiModel'; const huggingfaceChatModels: AIChatModelCard[] = [ { contextWindowTokens: 32_768, description: 'Mistral AI的指令调优模型', displayName: 'Mistral 7B Instruct v0.3', id: 'mistralai/Mistral-7B-Instruct-v0.3', type: 'chat', }, { contextWindowTokens: 8192, description: 'Google的轻量级指令调优模型', displayName: 'Gemma 2 2B Instruct', id: 'google/gemma-2-2b-it', type: 'chat', }, { contextWindowTokens: 32_768, description: '阿里云通义千问团队开发的大型语言模型', displayName: 'Qwen 2.5 72B Instruct', id: 'Qwen/Qwen2.5-72B-Instruct', type: 'chat', }, { contextWindowTokens: 32_768, description: 'Qwen2.5-Coder 专注于代码编写', displayName: 'Qwen 2.5 Coder 32B Instruct', id: 'Qwen/Qwen2.5-Coder-32B-Instruct', type: 'chat', }, { abilities: { reasoning: true, }, contextWindowTokens: 32_768, description: 'Qwen QwQ 是由 Qwen 团队开发的实验研究模型,专注于提升AI推理能力。', displayName: 'QwQ 32B Preview', enabled: true, id: 'Qwen/QwQ-32B-Preview', type: 'chat', }, { contextWindowTokens: 32_768, displayName: 'Phi 3.5 mini instruct', id: 'microsoft/Phi-3.5-mini-instruct', type: 'chat', }, { contextWindowTokens: 16_384, displayName: 'Hermes 3 Llama 3.1 8B', id: 'NousResearch/Hermes-3-Llama-3.1-8B', type: 'chat', }, { abilities: { reasoning: true, }, contextWindowTokens: 16_384, displayName: 'DeepSeek R1 (Distill Qwen 32B)', id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B', type: 'chat', }, { abilities: { reasoning: true, }, contextWindowTokens: 128_000, displayName: 'DeepSeek R1', enabled: true, id: 'deepseek-ai/DeepSeek-R1', type: 'chat', }, ]; export const allModels = [...huggingfaceChatModels]; export default allModels;