Skip to content

Commit 5494be6

Browse files
committed
Bring mixtral to front of default bots
1 parent 4ae413b commit 5494be6

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/app/bots/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function createBotInstance(botId: BotId) {
5454
case 'falcon':
5555
return new LMSYSBot('falcon-180b-chat')
5656
case 'mistral':
57-
return new LMSYSBot('mistral-7b-instruct')
57+
return new LMSYSBot('mixtral-8x7b-instruct-v0.1')
5858
case 'yi':
5959
return new LMSYSBot('yi-34b-chat')
6060
case 'pi':

src/app/consts.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ export const CHATBOTS: Record<BotId, { name: string; avatar: string }> = {
4747
name: 'Gemini Pro',
4848
avatar: geminiLogo,
4949
},
50+
mistral: {
51+
name: 'Mixtral',
52+
avatar: mistralLogo,
53+
},
5054
vicuna: {
5155
name: 'Vicuna',
5256
avatar: vicunaLogo,
@@ -59,10 +63,6 @@ export const CHATBOTS: Record<BotId, { name: string; avatar: string }> = {
5963
name: 'Grok',
6064
avatar: grokLogo,
6165
},
62-
mistral: {
63-
name: 'Mistral',
64-
avatar: mistralLogo,
65-
},
6666
pi: {
6767
name: 'Pi',
6868
avatar: piLogo,

0 commit comments

Comments
 (0)