Skip to content

Commit 92cc897

Browse files
authored
Merge pull request #29 from devchat-ai/feature/model-name-overhaul-#247
Clarify and Rename Model Selection Display Names
2 parents 9c37ba0 + 9e4a559 commit 92cc897

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/views/components/InputMessage/index.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,15 @@ const InputMessage = observer((props: any) => {
240240
const nameMap = {
241241
"gpt-3.5-turbo": "GPT-3.5",
242242
"gpt-4": "GPT-4",
243-
"gpt-4-1106-preview": "GPT-4-turbo",
244-
"claude-2.1": "CLAUDE 2.1",
243+
"gpt-4-turbo-preview": "GPT-4-turbo",
244+
"claude-2.1": "CLAUDE-2.1",
245+
"xinghuo-3.5": "xinghuo-3.5",
246+
"GLM-4": "GLM-4",
247+
"ERNIE-Bot-4.0": "ERNIE-Bot-4.0",
248+
"togetherai/codellama/CodeLlama-70b-Instruct-hf": "CodeLlama-70b",
249+
"togetherai/mistralai/Mixtral-8x7B-Instruct-v0.1": "Mixtral-8x7B",
250+
"minimax/abab6-chat": "minimax-abab6",
251+
"llama-2-70b-chat": "llama2-70b",
245252
};
246253
if (modelName in nameMap) {
247254
return nameMap[modelName];

0 commit comments

Comments
 (0)