feat: use old image model

This commit is contained in:
Nevo David 2025-05-03 11:09:23 +07:00
parent 054207bde9
commit 76621e89ed
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export class OpenaiService {
await openai.images.generate({
prompt,
response_format: isUrl ? 'url' : 'b64_json',
model: 'gpt-image-1',
model: 'dall-e-3',
})
).data[0];