File size: 1,448 Bytes
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
//
// 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'
    }
];

if (typeof module !== 'undefined' && module.exports) {
    module.exports = { examples };
}