-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat: add support InternLM (书生浦语) provider (#4711)
* ✨ feat: add support InternLM (书生浦语) provider * 🐛 fix: fix tools calling, disable streaming, not support * 💄 style: disable Client Fetch mode, not support * 🔨 chore: cleanup code
- Loading branch information
1 parent
c59f338
commit aaae059
Showing
12 changed files
with
347 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { ModelProviderCard } from '@/types/llm'; | ||
|
||
const InternLM: ModelProviderCard = { | ||
chatModels: [ | ||
{ | ||
description: '我们最新的模型系列,有着卓越的推理性能,支持 1M 的上下文长度以及更强的指令跟随和工具调用能力。', | ||
displayName: 'InternLM2.5', | ||
enabled: true, | ||
functionCall: true, | ||
id: 'internlm2.5-latest', | ||
maxOutput: 4096, | ||
pricing: { | ||
input: 0, | ||
output: 0, | ||
}, | ||
tokens: 32_768, | ||
}, | ||
{ | ||
description: '我们仍在维护的老版本模型,有 7B、20B 多种模型参数量可选。', | ||
displayName: 'InternLM2 Pro Chat', | ||
functionCall: true, | ||
id: 'internlm2-pro-chat', | ||
maxOutput: 4096, | ||
pricing: { | ||
input: 0, | ||
output: 0, | ||
}, | ||
tokens: 32_768, | ||
}, | ||
], | ||
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', | ||
url: 'https://internlm.intern-ai.org.cn', | ||
}; | ||
|
||
export default InternLM; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.