Skip to content

Commit

Permalink
Update groq.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
LovelyGuYiMeng authored Sep 12, 2024
1 parent b9814ff commit 79dbb3b
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions src/config/modelProviders/groq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Groq: ModelProviderCard = {
chatModels: [
// TODO: During preview launch, Groq is limiting 3.1 models to max_tokens of 8k.
{
displayName: 'Llama 3.1 8B (Preview)',
displayName: 'Llama 3.1 8B',
enabled: true,
functionCall: true,
id: 'llama-3.1-8b-instant',
Expand All @@ -17,7 +17,7 @@ const Groq: ModelProviderCard = {
tokens: 131_072,
},
{
displayName: 'Llama 3.1 70B (Preview)',
displayName: 'Llama 3.1 70B',
enabled: true,
functionCall: true,
id: 'llama-3.1-70b-versatile',
Expand All @@ -31,14 +31,14 @@ const Groq: ModelProviderCard = {
/*
// Offline due to overwhelming demand! Stay tuned for updates.
{
displayName: 'Llama 3.1 405B (Preview)',
displayName: 'Llama 3.1 405B',
functionCall: true,
id: 'llama-3.1-405b-reasoning',
tokens: 8_192,
},
*/
{
displayName: 'Llama 3 Groq 8B Tool Use Preview 8K',
displayName: 'Llama 3 Groq 8B Tool Use',
enabled: true,
functionCall: true,
id: 'llama3-groq-8b-8192-tool-use-preview',
Expand All @@ -49,7 +49,7 @@ const Groq: ModelProviderCard = {
tokens: 8192,
},
{
displayName: 'Llama 3 Groq 70B Tool Use Preview 8K',
displayName: 'Llama 3 Groq 70B Tool Use',
enabled: true,
functionCall: true,
id: 'llama3-groq-70b-8192-tool-use-preview',
Expand All @@ -60,8 +60,7 @@ const Groq: ModelProviderCard = {
tokens: 8192,
},
{
displayName: 'Meta Llama 3 8B',
enabled: true,
displayName: 'Llama 3 8B',
functionCall: true,
id: 'llama3-8b-8192',
pricing: {
Expand All @@ -71,8 +70,7 @@ const Groq: ModelProviderCard = {
tokens: 8192,
},
{
displayName: 'Meta Llama 3 70B',
enabled: true,
displayName: 'Llama 3 70B',
functionCall: true,
id: 'llama3-70b-8192',
pricing: {
Expand All @@ -82,7 +80,7 @@ const Groq: ModelProviderCard = {
tokens: 8192,
},
{
displayName: 'Gemma 2 9B 8k',
displayName: 'Gemma 2 9B',
enabled: true,
functionCall: true,
id: 'gemma2-9b-it',
Expand All @@ -93,7 +91,7 @@ const Groq: ModelProviderCard = {
tokens: 8192,
},
{
displayName: 'Gemma 7B 8k Instruct',
displayName: 'Gemma 7B',
functionCall: true,
id: 'gemma-7b-it',
pricing: {
Expand All @@ -103,8 +101,7 @@ const Groq: ModelProviderCard = {
tokens: 8192,
},
{
displayName: 'Mixtral 8x7B Instruct 32k',
enabled: true,
displayName: 'Mixtral 8x7B',
functionCall: true,
id: 'mixtral-8x7b-32768',
pricing: {
Expand Down

0 comments on commit 79dbb3b

Please sign in to comment.