Skip to content

Commit

Permalink
feat(openai): add GPT-4 Omni mini
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzCrazyKns committed Jul 20, 2024
1 parent f02393d commit 9195cbc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib/providers/openai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9195cbc

Please sign in to comment.