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.

41 lines (37 loc) 949 B
import { AIChatModelCard } from '@/types/aiModel'; const ai21ChatModels: AIChatModelCard[] = [ { abilities: { functionCall: true, }, contextWindowTokens: 256_000, description: '在同级别中最高效的模型,兼顾速度与质量,具备更小的体积。', displayName: 'Jamba Mini', enabled: true, id: 'jamba-mini', pricing: { input: 0.2, output: 0.4, }, releasedAt: '2025-03-06', type: 'chat', }, { abilities: { functionCall: true, }, contextWindowTokens: 256_000, description: '我们最强大、最先进的模型,专为处理企业级复杂任务而设计,具备卓越的性能。', displayName: 'Jamba Large', enabled: true, id: 'jamba-large', pricing: { input: 2, output: 8, }, releasedAt: '2025-03-06', type: 'chat', }, ]; export const allModels = [...ai21ChatModels]; export default allModels;