Skip to content

Commit

Permalink
feat(providers): use correct model name
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzCrazyKns committed May 2, 2024
1 parent f21f5c9 commit ed9ff3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const getAvailableProviders = async () => {
'Mixtral 8x7b': new ChatOpenAI(
{
openAIApiKey: groqApiKey,
modelName: 'gemma-7b-it',
modelName: 'mixtral-8x7b-32768',
temperature: 0.7,
},
{
Expand All @@ -79,7 +79,7 @@ export const getAvailableProviders = async () => {
'Gemma 7b': new ChatOpenAI(
{
openAIApiKey: groqApiKey,
modelName: 'llama3-70b-8192',
modelName: 'gemma-7b-it',
temperature: 0.7,
},
{
Expand Down

0 comments on commit ed9ff3c

Please sign in to comment.