feat(providers): use correct model name

This commit is contained in:
ItzCrazyKns 2024-05-02 12:09:25 +05:30
parent f21f5c9611
commit ed9ff3c20f
No known key found for this signature in database
GPG Key ID: 8162927C7CCE3065
1 changed files with 2 additions and 2 deletions

View File

@ -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,
},
{
@ -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,
},
{