@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.
27 lines (24 loc) • 877 B
text/typescript
import { ModelProviderCard } from '@/types/llm';
// ref: https://platform.minimaxi.com/document/Models
const Minimax: ModelProviderCard = {
chatModels: [],
checkModel: 'MiniMax-M2',
description:
'MiniMax 是 2021 年成立的通用人工智能科技公司,致力于与用户共创智能。MiniMax 自主研发了不同模态的通用大模型,其中包括万亿参数的 MoE 文本大模型、语音大模型以及图像大模型。并推出了海螺 AI 等应用。',
id: 'minimax',
modelsUrl: 'https://platform.minimaxi.com/document/Models',
name: 'Minimax',
settings: {
disableBrowserRequest: true, // CORS error
proxyUrl: {
placeholder: 'https://api.minimax.chat/v1',
},
responseAnimation: {
speed: 2,
text: 'smooth',
},
sdkType: 'openai',
},
url: 'https://www.minimaxi.com',
};
export default Minimax;