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.

77 lines (74 loc) 2.06 kB
import { ModelProviderCard } from '@/types/llm'; // ref: https://x.ai/about const XAI: ModelProviderCard = { chatModels: [ { contextWindowTokens: 131_072, description: '拥有与 Grok 2 相当的性能,但具有更高的效率、速度和功能。', displayName: 'Grok Beta', enabled: true, functionCall: true, id: 'grok-beta', pricing: { input: 5, output: 15, }, }, { contextWindowTokens: 8192, description: '最新的图像理解模型,可以处理各种各样的视觉信息,包括文档、图表、截图和照片等。', displayName: 'Grok Vision Beta', enabled: true, functionCall: true, id: 'grok-vision-beta', pricing: { input: 5, output: 15, }, vision: true, }, { contextWindowTokens: 131_072, description: '该模型在准确性、指令遵循和多语言能力方面有所改进。', displayName: 'Grok 2 1212', enabled: true, functionCall: true, id: 'grok-2-1212', pricing: { input: 2, output: 10, }, releasedAt: '2024-12-12', }, { contextWindowTokens: 32_768, description: '该模型在准确性、指令遵循和多语言能力方面有所改进。', displayName: 'Grok 2 Vision 1212', enabled: true, functionCall: true, id: 'grok-2-vision-1212', pricing: { input: 2, output: 10, }, releasedAt: '2024-12-12', vision: true, }, ], checkModel: 'grok-2-1212', description: 'xAI 是一家致力于构建人工智能以加速人类科学发现的公司。我们的使命是推动我们对宇宙的共同理解。', id: 'xai', modelList: { showModelFetcher: true }, modelsUrl: 'https://docs.x.ai/docs#models', name: 'xAI (Grok)', settings: { proxyUrl: { placeholder: 'https://api.x.ai/v1', }, sdkType: 'openai', showModelFetcher: true, }, url: 'https://x.ai/api', }; export default XAI;