Skip to content

Commit

Permalink
feat: upgrade to LMSYS chatglm2-6b & vicuna-33b
Browse files Browse the repository at this point in the history
  • Loading branch information
sunner committed Aug 13, 2023
1 parent fa3630b commit 6cfe395
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/bots/lmsys/ChatGLMBot.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default class ChatGLMBot extends LMSYSBot {
static _brandId = "lmsys"; // Brand id of the bot, should be unique. Used in i18n.
static _className = "ChatGLMBot"; // Class name of the bot
static _logoFilename = "chatglm-logo.svg"; // Place it in public/bots/
static _model = "chatglm-6b";
static _model = "chatglm2-6b";

constructor() {
super();
Expand Down
2 changes: 1 addition & 1 deletion src/bots/lmsys/VicunaBot.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default class VicunaBot extends LMSYSBot {
static _brandId = "lmsys"; // Brand id of the bot, should be unique. Used in i18n.
static _className = "VicunaBot"; // Class name of the bot
static _logoFilename = "vicuna-logo.jpeg"; // Place it in public/bots/
static _model = "vicuna-13b";
static _model = "vicuna-33b";

constructor() {
super();
Expand Down
4 changes: 3 additions & 1 deletion src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@
"lmsys": {
"name": "LMSYS",
"vicuna-13b": "vicuna-13b",
"vicuna-33b": "vicuna-33b",
"chatglm-6b": "chatglm-6b",
"chatglm2-6b": "chatglm2-6b",
"alpaca-13b": "alpaca-13b",
"claude-1": "claude-1"
},
Expand Down Expand Up @@ -260,4 +262,4 @@
"25": "25",
"50": "50",
"100": "100"
}
}
4 changes: 3 additions & 1 deletion src/i18n/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@
"lmsys": {
"name": "LMSYS",
"vicuna-13b": "vicuna-13b",
"vicuna-33b": "vicuna-33b",
"chatglm-6b": "chatglm-6b",
"chatglm2-6b": "chatglm2-6b",
"alpaca-13b": "alpaca-13b",
"claude-1": "claude-1"
},
Expand Down Expand Up @@ -260,4 +262,4 @@
"25": "25",
"50": "50",
"100": "100"
}
}

1 comment on commit 6cfe395

@vercel
Copy link

@vercel vercel bot commented on 6cfe395 Aug 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

chatall – ./

chatall-git-main-sunner.vercel.app
chatall-llm.vercel.app
chatall-sunner.vercel.app

Please sign in to comment.