File size: 2,126 Bytes
4f33245 358710a 4f33245 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
//
// SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
// SPDX-License-Identifier: Apache-2.0
//
const examples = [
{
prompt: 'A majestic mountain landscape at golden hour with dramatic clouds and vibrant colors reflecting on a crystal clear alpine lake',
model: 'flux',
size: '1536x1024',
modelLabel: 'FLUX',
sizeLabel: '1536×1024',
note: 'Recommended model'
},
{
prompt: 'An enchanted forest with bioluminescent plants and magical floating particles, moonlight streaming through ancient mystical trees',
model: 'kontext',
size: '1024x1024',
modelLabel: 'KONTEXT',
sizeLabel: '1024×1024',
note: 'Sometimes the server is busy'
},
{
prompt: 'Underwater coral reef teeming with colorful tropical fish and sea life, sunbeams penetrating crystal clear turquoise water',
model: 'turbo',
size: '1024x768',
modelLabel: 'TURBO',
sizeLabel: '1024×768',
note: 'Sometimes the server is busy'
},
{
prompt: 'A woman riding a horse across an open field, cinematic and realistic style',
model: 'nanobanana',
size: '1024x1024',
modelLabel: 'NANO BANANA',
sizeLabel: '1024×1024',
note: 'Sometimes the resolution is forced to be square'
},
{
prompt: 'A man sitting in a modern cafe reading a book, warm afternoon sunlight streaming through large windows, realistic atmosphere',
model: 'seedream',
size: '1536x1024',
modelLabel: 'SEEDREAM 4.0',
sizeLabel: '1536×1024',
note: 'New model! Added on 2025-09-24.'
},
{
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',
model: 'seedream',
size: '1024x1024',
modelLabel: 'SEEDREAM 4.0',
sizeLabel: '1024×1024',
note: 'New model! Added on 2025-09-24.'
}
];
if (typeof module !== 'undefined' && module.exports) {
module.exports = { examples };
} |