Skip to content

Commit 6144448

Browse files
authored
💄 style: add LLaMA 3 in groq + Mixtral 8x22B model (#2128)
* ✨ feat: llama 3 in groq * ✨ feat: new mistral model
1 parent 77e84a9 commit 6144448

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/config/modelProviders/groq.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ const Groq: ModelProviderCard = {
1515
id: 'gemma-7b-it',
1616
tokens: 8192,
1717
},
18+
{
19+
displayName: 'LLaMA3-3-8B',
20+
enabled: true,
21+
id: 'llama3-8b-8192',
22+
tokens: 8192,
23+
},
24+
{
25+
displayName: 'LLaMA3-3-70B',
26+
enabled: true,
27+
id: 'llama3-70b-8192',
28+
tokens: 8192,
29+
},
1830
{
1931
displayName: 'LLaMA2-70b-chat',
2032
enabled: true,

src/config/modelProviders/mistral.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ const Mistral: ModelProviderCard = {
1515
id: 'open-mixtral-8x7b',
1616
tokens: 32_768,
1717
},
18+
{
19+
displayName: 'Mixtral 8x22B',
20+
enabled: true,
21+
id: 'open-mixtral-8x22b',
22+
tokens: 65_536,
23+
},
1824
{
1925
displayName: 'Mistral Small',
2026
enabled: true,

0 commit comments

Comments
 (0)