@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.
53 lines (50 loc) • 1.6 kB
text/typescript
import { ModelProviderCard } from '@/types/llm';
const InternLM: ModelProviderCard = {
chatModels: [
{
contextWindowTokens: 32_768,
description:
'我们最新的模型系列,有着卓越的推理性能,支持 1M 的上下文长度以及更强的指令跟随和工具调用能力。',
displayName: 'InternLM2.5',
enabled: true,
functionCall: true,
id: 'internlm2.5-latest',
maxOutput: 4096,
pricing: {
input: 0,
output: 0,
},
},
{
contextWindowTokens: 32_768,
description: '我们仍在维护的老版本模型,有 7B、20B 多种模型参数量可选。',
displayName: 'InternLM2 Pro Chat',
functionCall: true,
id: 'internlm2-pro-chat',
maxOutput: 4096,
pricing: {
input: 0,
output: 0,
},
},
],
checkModel: 'internlm2.5-latest',
description:
'致力于大模型研究与开发工具链的开源组织。为所有 AI 开发者提供高效、易用的开源平台,让最前沿的大模型与算法技术触手可及',
disableBrowserRequest: true,
id: 'internlm',
modelList: { showModelFetcher: true },
modelsUrl:
'https://internlm.intern-ai.org.cn/doc/docs/Models#%E8%8E%B7%E5%8F%96%E6%A8%A1%E5%9E%8B%E5%88%97%E8%A1%A8',
name: 'InternLM',
settings: {
disableBrowserRequest: true,
proxyUrl: {
placeholder: 'https://internlm-chat.intern-ai.org.cn/puyu/api/v1',
},
sdkType: 'openai',
showModelFetcher: true,
},
url: 'https://internlm.intern-ai.org.cn',
};
export default InternLM;