Skip to content

Commit

Permalink
Bring mixtral to front of default bots
Browse files Browse the repository at this point in the history
  • Loading branch information
wong2 committed Dec 21, 2023
1 parent 4ae413b commit 5494be6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/bots/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function createBotInstance(botId: BotId) {
case 'falcon':
return new LMSYSBot('falcon-180b-chat')
case 'mistral':
return new LMSYSBot('mistral-7b-instruct')
return new LMSYSBot('mixtral-8x7b-instruct-v0.1')
case 'yi':
return new LMSYSBot('yi-34b-chat')
case 'pi':
Expand Down
8 changes: 4 additions & 4 deletions src/app/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ export const CHATBOTS: Record<BotId, { name: string; avatar: string }> = {
name: 'Gemini Pro',
avatar: geminiLogo,
},
mistral: {
name: 'Mixtral',
avatar: mistralLogo,
},
vicuna: {
name: 'Vicuna',
avatar: vicunaLogo,
Expand All @@ -59,10 +63,6 @@ export const CHATBOTS: Record<BotId, { name: string; avatar: string }> = {
name: 'Grok',
avatar: grokLogo,
},
mistral: {
name: 'Mistral',
avatar: mistralLogo,
},
pi: {
name: 'Pi',
avatar: piLogo,
Expand Down

0 comments on commit 5494be6

Please sign in to comment.