default txt2img model set to gpt-image-1-mini

This commit is contained in:
Nariman Jelveh
2025-10-26 11:52:28 -07:00
parent 5476389795
commit 3720369d87
2 changed files with 2 additions and 2 deletions

View File

@@ -170,7 +170,7 @@ class OpenAIImageGenerationService extends BaseService {
}
// Somewhat sane defaults
model = model ?? 'gpt-image-1';
model = model ?? 'gpt-image-1-mini';
quality = quality ?? 'low';
if ( ! this.models_[model] ) {

View File

@@ -108,7 +108,7 @@ interface ToolCall {
}
interface Txt2ImgOptions {
model?: 'gpt-image-1' | 'gemini-2.5-flash-image-preview' | 'dall-e-3';
model?: 'gpt-image-1' | 'gpt-image-1-mini' | 'gemini-2.5-flash-image-preview' | 'dall-e-3';
quality?: 'high' | 'medium' | 'low' | 'hd' | 'standard';
input_image?: string;
input_image_mime_type?: string;