From a9cfad6db8c415a288129dfca040a54d734600e2 Mon Sep 17 00:00:00 2001 From: Zach Zimmermann Date: Thu, 25 Jul 2024 10:40:51 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style:=20Updated=20Groq=20model?= =?UTF-8?q?=20list=20to=20include=20llama-3.1=20and=20llama3-Groq=20(#3313?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Updated Groq model list with llama 3.1 models and Groq versions of llama 3 * Update names to match convention --- src/config/modelProviders/groq.ts | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/config/modelProviders/groq.ts b/src/config/modelProviders/groq.ts index fe57f69b2e09..c380a01e6979 100644 --- a/src/config/modelProviders/groq.ts +++ b/src/config/modelProviders/groq.ts @@ -11,19 +11,32 @@ const Groq: ModelProviderCard = { tokens: 16_000, }, { - displayName: 'LLaMA3.1 70B (Preview)', + displayName: 'LLaMA 3.1 70B (Preview)', enabled: true, functionCall: true, id: 'llama-3.1-70b-versatile', tokens: 8000, }, { - displayName: 'LLaMA3.1 8B (Preview)', + displayName: 'LLaMA 3.1 8B (Preview)', enabled: true, functionCall: true, id: 'llama-3.1-8b-instant', tokens: 8000, }, + { + displayName: 'LLaMA 3 Groq 70b Tool Use (preview)', + enabled: true, + functionCall: true, + id: 'llama3-groq-70b-8192-tool-use-preview', + tokens: 8192, + }, + { + displayName: 'LLaMA 3 Groq 8b Tool Use (preview)', + enabled: true, + functionCall: true, + id: 'llama3-groq-8b-8192-tool-use-preview', + }, { displayName: 'LLaMA3 70B', enabled: true,