Feat: Support GiteeAI model #1853 (#8573)

### What problem does this PR solve?

Feat: Support GiteeAI model  #1853

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-06-30 11:21:51 +08:00
committed by GitHub
parent 356d1f3485
commit 10f12fa149
2 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,7 @@ export enum LLMFactory {
SentenceTransformers = 'sentence-transformers',
GPUStack = 'GPUStack',
VLLM = 'VLLM',
GiteeAI = 'GiteeAI',
}
// Please lowercase the file name
@ -103,4 +104,5 @@ export const IconMap = {
[LLMFactory.SentenceTransformers]: 'sentence-transformers',
[LLMFactory.GPUStack]: 'gpustack',
[LLMFactory.VLLM]: 'vllm',
[LLMFactory.GiteeAI]: 'gitee-ai',
};