mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-24 15:36:50 +08:00
Feat: add model provider DeepInfra (#9003)
### What problem does this PR solve? Add model provider DeepInfra. This model list comes from our community. NOTE: most endpoints haven't been tested, but they should work as OpenAI does. ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -50,6 +50,7 @@ export enum LLMFactory {
|
||||
GPUStack = 'GPUStack',
|
||||
VLLM = 'VLLM',
|
||||
GiteeAI = 'GiteeAI',
|
||||
DeepInfra = 'DeepInfra',
|
||||
}
|
||||
|
||||
// Please lowercase the file name
|
||||
@ -105,4 +106,5 @@ export const IconMap = {
|
||||
[LLMFactory.GPUStack]: 'gpustack',
|
||||
[LLMFactory.VLLM]: 'vllm',
|
||||
[LLMFactory.GiteeAI]: 'gitee-ai',
|
||||
[LLMFactory.DeepInfra]: 'deepinfra',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user