### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Zhedong Cen <cenzhedong2@126.com>
38 lines
811 B
TypeScript
38 lines
811 B
TypeScript
// Please lowercase the file name
|
|
export const IconMap = {
|
|
'Tongyi-Qianwen': 'tongyi',
|
|
Moonshot: 'moonshot',
|
|
OpenAI: 'openai',
|
|
'ZHIPU-AI': 'zhipu',
|
|
文心一言: 'wenxin',
|
|
Ollama: 'ollama',
|
|
Xinference: 'xinference',
|
|
DeepSeek: 'deepseek',
|
|
VolcEngine: 'volc_engine',
|
|
BaiChuan: 'baichuan',
|
|
Jina: 'jina',
|
|
MiniMax: 'chat-minimax',
|
|
Mistral: 'mistral',
|
|
'Azure-OpenAI': 'azure',
|
|
Bedrock: 'bedrock',
|
|
Gemini: 'gemini',
|
|
Groq: 'groq-next',
|
|
OpenRouter: 'open-router',
|
|
LocalAI: 'local-ai',
|
|
StepFun: 'stepfun',
|
|
NVIDIA:'nvidia',
|
|
'LM-Studio':'lm-studio',
|
|
'OpenAI-API-Compatible':'openai-api',
|
|
'cohere':'cohere'
|
|
};
|
|
|
|
export const BedrockRegionList = [
|
|
'us-east-1',
|
|
'us-west-2',
|
|
'ap-southeast-1',
|
|
'ap-northeast-1',
|
|
'eu-central-1',
|
|
'us-gov-west-1',
|
|
'ap-southeast-2',
|
|
];
|