image: Add Seedream 4.0 model.
Browse files* 2025-09-24.
https://seed.bytedance.com/en/seedream4_0
- example.js +16 -0
- model.js +2 -1
example.js
CHANGED
|
@@ -35,6 +35,22 @@ const examples = [
|
|
| 35 |
modelLabel: 'NANO BANANA',
|
| 36 |
sizeLabel: '1024×1024',
|
| 37 |
note: 'Sometimes the resolution is forced to be square'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
}
|
| 39 |
];
|
| 40 |
|
|
|
|
| 35 |
modelLabel: 'NANO BANANA',
|
| 36 |
sizeLabel: '1024×1024',
|
| 37 |
note: 'Sometimes the resolution is forced to be square'
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
prompt: 'A man sitting in a modern cafe reading a book, warm afternoon sunlight streaming through large windows, realistic atmosphere',
|
| 41 |
+
model: 'seedream',
|
| 42 |
+
size: '1536x1024',
|
| 43 |
+
modelLabel: 'SEEDREAM 4.0',
|
| 44 |
+
sizeLabel: '1536×1024',
|
| 45 |
+
note: 'New model! Added on 2025-09-24.'
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
prompt: 'A woman in a wedding dress holding hands with her husband in a suit, both smiling happily, outdoor ceremony with natural lighting, realistic style',
|
| 49 |
+
model: 'seedream',
|
| 50 |
+
size: '1024x1024',
|
| 51 |
+
modelLabel: 'SEEDREAM 4.0',
|
| 52 |
+
sizeLabel: '1024×1024',
|
| 53 |
+
note: 'New model! Added on 2025-09-24.'
|
| 54 |
}
|
| 55 |
];
|
| 56 |
|
model.js
CHANGED
|
@@ -7,7 +7,8 @@ const models = [
|
|
| 7 |
{ value: 'flux', label: 'Flux' },
|
| 8 |
{ value: 'kontext', label: 'Kontext' },
|
| 9 |
{ value: 'turbo', label: 'Turbo' },
|
| 10 |
-
{ value: 'nanobanana', label: 'Nano Banana' }
|
|
|
|
| 11 |
];
|
| 12 |
|
| 13 |
if (typeof module !== 'undefined' && module.exports) {
|
|
|
|
| 7 |
{ value: 'flux', label: 'Flux' },
|
| 8 |
{ value: 'kontext', label: 'Kontext' },
|
| 9 |
{ value: 'turbo', label: 'Turbo' },
|
| 10 |
+
{ value: 'nanobanana', label: 'Nano Banana' },
|
| 11 |
+
{ value: 'seedream', label: 'Seedream 4.0' }
|
| 12 |
];
|
| 13 |
|
| 14 |
if (typeof module !== 'undefined' && module.exports) {
|