Skip to content

Commit

Permalink
♻️ refactor(model): Update some models
Browse files Browse the repository at this point in the history
  • Loading branch information
RubuJam committed Jul 15, 2024
1 parent d16e943 commit 3672191
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config/modelProviders/groq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ModelProviderCard } from '@/types/llm';
const Groq: ModelProviderCard = {
chatModels: [
{
displayName: 'LLaMA3-3-70B',
displayName: 'LLaMA3 70B',
enabled: true,
functionCall: true,
id: 'llama3-70b-8192',
Expand All @@ -18,20 +18,20 @@ const Groq: ModelProviderCard = {
tokens: 32_768,
},
{
displayName: 'Gemma-7b',
displayName: 'Gemma 7B',
functionCall: true,
id: 'gemma-7b-it',
tokens: 8192,
},
{
displayName: 'Gemma2-9b',
displayName: 'Gemma2 9B',
enabled: true,
functionCall: true,
id: 'gemma2-9b-it',
tokens: 8192,
},
{
displayName: 'LLaMA3-3-8B',
displayName: 'LLaMA3 8B',
enabled: true,
functionCall: true,
id: 'llama3-8b-8192',
Expand Down

0 comments on commit 3672191

Please sign in to comment.