feat(openai): add GPT-4 Omni mini

This commit is contained in:
ItzCrazyKns 2024-07-20 09:26:46 +05:30
parent f02393dbe9
commit 9195cbcce0
No known key found for this signature in database
GPG Key ID: 8162927C7CCE3065
1 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,11 @@ export const loadOpenAIChatModels = async () => {
modelName: 'gpt-4o',
temperature: 0.7,
}),
'GPT-4 omni mini': new ChatOpenAI({
openAIApiKey,
modelName: 'gpt-4o-mini',
temperature: 0.7,
}),
};
return chatModels;