You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new AI models and update existing model implementations
New models:
- GPT Image 1.5 (OpenAI) - generation only, with masked API key input
- Nano Banana Pro (Google Gemini 3 Pro) - generation and editing
- Qwen Image - generation with img2img support
Updated models:
- Nano Banana: Updated to full release (Gemini 2.5 Flash Image),
removed "Preview" designation, updated description
- Seedream: Upgraded to version 4.5 with stronger spatial understanding
- Renamed imagen4.py → imagen.py, seedream4.py → seedream.py,
stable_diffusion_3_5_large_turbo.py → stable_diffusion_large_turbo.py
Features:
- Added is_secret parameter to ParameterDefinition for password fields
- OpenAI API key field now displays masked input (••••)
Translations:
- All 10 locale files updated with 171 translated messages each
- Added translations for all new model strings
- Updated Nano Banana strings across all languages
Documentation:
- README updated with all new model specifications and capabilities
Copy file name to clipboardExpand all lines: README.md
+44-12Lines changed: 44 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# Dream Prompter - GIMP Plugin
2
2
3
-
Dream Prompter brings powerful AI models from Replicate directly into GIMP for intelligent image generation and editing. Choose from multiple advanced models including Flux 2 Pro, Imagen 4, Nano Banana, Qwen ImageEdit Plus, Seedream 4, and Stable Diffusion 3.5 Large Turbo.
3
+
Dream Prompter brings powerful AI models from Replicate directly into GIMP for intelligent image generation and editing. Choose from multiple advanced models including Flux 2 Pro, GPT Image 1.5, Imagen 4, Nano Banana, Nano Banana Pro, Qwen Image, Qwen Image Edit Plus, Seedream 4.5, and Stable Diffusion 3.5 Large Turbo.
4
4
5
5

6
6
7
7
## Features
8
8
9
9
- 🎨 **AI Image Generation**: Create new images from text descriptions
10
10
- ✨ **AI Image Editing**: Transform existing images with natural language prompts
11
-
- 🤖 **Multiple AI Models**: Choose from Flux 2 Pro, Imagen 4, Nano Banana, Qwen ImageEdit Plus, Seedream 4, and Stable Diffusion 3.5 Large Turbo
11
+
- 🤖 **Multiple AI Models**: Choose from Flux 2 Pro, GPT Image 1.5, Imagen 4, Nano Banana, Nano Banana Pro, Qwen Image, Qwen Image Edit Plus, Seedream 4.5, and Stable Diffusion 3.5 Large Turbo
12
12
- 🖼️ **Reference Images**: Support for multiple reference images (varies by model)
13
13
- 🔄 **Smart Layer Management**: Automatically creates properly named layers
14
14
- 🎯 **Dual Operation Modes**: Seamlessly switch between editing and generation
@@ -125,11 +125,14 @@ yay -S dream-prompter
125
125
│ ├── __init__.py
126
126
│ ├── factory.py
127
127
│ ├── flux_pro.py
128
-
│ ├── imagen4.py
128
+
│ ├── gpt_image.py
129
+
│ ├── imagen.py
129
130
│ ├── nano_banana.py
131
+
│ ├── nano_banana_pro.py
132
+
│ ├── qwen_image.py
130
133
│ ├── qwen_image_edit_plus.py
131
-
│ ├── seedream4.py
132
-
│ └── stable_diffusion_3_5_large_turbo.py
134
+
│ ├── seedream.py
135
+
│ └── stable_diffusion_large_turbo.py
133
136
└── locale/ (optional)
134
137
└── ...
135
138
```
@@ -243,6 +246,14 @@ If you get the **"replicate not installed"** error on Windows:
243
246
-**Special Features**: Excellent text rendering, photorealism, character consistency, up to 4MP resolution
244
247
-**More Info**: [Replicate Model Page](https://replicate.com/black-forest-labs/flux-2-pro)
@@ -380,10 +408,14 @@ The plugin is organized into focused modules with a clean model-driven architect
380
408
-**`models/__init__.py`** - Base model classes and registry system
381
409
-**`models/factory.py`** - Model factory for centralized model management
382
410
-**`models/flux_pro.py`** - Flux 2 Pro model implementation
383
-
-**`models/imagen4.py`** - Imagen 4 model implementation
411
+
-**`models/gpt_image.py`** - GPT Image 1.5 model implementation
412
+
-**`models/imagen.py`** - Imagen 4 model implementation
384
413
-**`models/nano_banana.py`** - Nano Banana model implementation
414
+
-**`models/nano_banana_pro.py`** - Nano Banana Pro model implementation
415
+
-**`models/qwen_image.py`** - Qwen Image model implementation
385
416
-**`models/qwen_image_edit_plus.py`** - Qwen Image Edit Plus model implementation
386
-
-**`models/seedream4.py`** - Seedream 4 model implementation
417
+
-**`models/seedream.py`** - Seedream 4.5 model implementation
418
+
-**`models/stable_diffusion_large_turbo.py`** - Stable Diffusion 3.5 Large Turbo model implementation
387
419
388
420
The model system provides a clean abstraction for AI models, making it easy to:
389
421
@@ -504,4 +536,4 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
504
536
505
537
## Credits
506
538
507
-
Built with Replicate's API providing access to multiple advanced AI models including Black Forest Labs' Flux 2 Pro, Google's Imagen 4, Google's Nano Banana, Qwen's ImageEdit Plus, ByteDance's Seedream 4, and Stability AI's Stable Diffusion 3.5 Large Turbo.
539
+
Built with Replicate's API providing access to multiple advanced AI models including Black Forest Labs' Flux 2 Pro, OpenAI's GPT Image 1.5, Google's Imagen 4, Google's Nano Banana, Google's Nano Banana Pro, Qwen's Image, Qwen's Image Edit Plus, ByteDance's Seedream 4.5, and Stability AI's Stable Diffusion 3.5 Large Turbo.
0 commit comments