fix: use correct image model id (#761)

This commit is contained in:
Jeremy 2025-02-05 18:11:19 +03:00 committed by GitHub
parent cf4ab9a4a7
commit 5e059844a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 16 deletions

View file

@ -20,7 +20,8 @@ export const myProvider = customProvider({
'block-model': openai('gpt-4o-mini'),
},
imageModels: {
'small-model': openai.image('dall-e-3'),
'small-model': openai.image('dall-e-2'),
'large-model': openai.image('dall-e-3'),
},
});