From 32409047ffa29e2d1a8e604ab73ec9f4fbee5400 Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Fri, 13 Dec 2024 14:48:02 -0500 Subject: [PATCH] Update constants.ts Removed Llama3.1 70B and replaced it with Llama3.3-70B --- app/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/constants.ts b/app/utils/constants.ts index 1e51619..3b70727 100644 --- a/app/utils/constants.ts +++ b/app/utils/constants.ts @@ -139,11 +139,11 @@ const PROVIDER_LIST: ProviderInfo[] = [ { name: 'Groq', staticModels: [ - { name: 'llama-3.1-70b-versatile', label: 'Llama 3.1 70b (Groq)', provider: 'Groq', maxTokenAllowed: 8000 }, { name: 'llama-3.1-8b-instant', label: 'Llama 3.1 8b (Groq)', provider: 'Groq', maxTokenAllowed: 8000 }, { name: 'llama-3.2-11b-vision-preview', label: 'Llama 3.2 11b (Groq)', provider: 'Groq', maxTokenAllowed: 8000 }, { name: 'llama-3.2-3b-preview', label: 'Llama 3.2 3b (Groq)', provider: 'Groq', maxTokenAllowed: 8000 }, { name: 'llama-3.2-1b-preview', label: 'Llama 3.2 1b (Groq)', provider: 'Groq', maxTokenAllowed: 8000 }, + { name: 'llama-3.3-70b-versatile', label: 'Llama 3.3 70b (Groq)', provider: 'Groq', maxTokenAllowed: 8000 }, ], getApiKeyLink: 'https://console.groq.com/keys', },