add gemma2-9b-it

This commit is contained in:
sjiampojamarn 2024-07-11 20:35:54 -07:00
parent 27e6f5b9e1
commit fac41d3812
1 changed files with 10 additions and 0 deletions

View File

@ -49,6 +49,16 @@ export const loadGroqChatModels = async () => {
baseURL: 'https://api.groq.com/openai/v1',
},
),
'Gemma2 9b': new ChatOpenAI(
{
openAIApiKey: groqApiKey,
modelName: 'gemma2-9b-it',
temperature: 0.7,
},
{
baseURL: 'https://api.groq.com/openai/v1',
},
),
};
return chatModels;