Spaces:
Running
Running
File size: 2,928 Bytes
9c78030 | 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | // Prompts that show the model well. `size` holds one output size per build, same aspect, a 512
// long side on desktop and a small one on phones; both are presets in sizes.js. `ref` makes the
// example an edit of that image.
export const EXAMPLES = [
{
title: 'Red bicycle',
prompt: 'a red bicycle leaning on a whitewashed wall, morning light',
size: { desktop: [512, 512], mobile: [256, 256] },
},
{
title: 'Fox in snow',
prompt:
'a red fox sitting in fresh snow at dawn, soft light, shallow depth of field, photograph',
size: { desktop: [480, 288], mobile: [320, 192] },
},
{
title: 'Lighthouse',
prompt:
'a small white lighthouse on a rocky coast, stormy sky, oil painting, thick brush strokes',
size: { desktop: [320, 480], mobile: [256, 384] },
},
{
title: 'Ramen',
prompt:
'a steaming bowl of ramen with a soft egg, chopsticks, warm kitchen light, close-up food photo',
size: { desktop: [512, 512], mobile: [256, 256] },
},
{
title: 'Cosmonaut cat',
prompt: 'a cat in a cosmonaut suit floating inside a space station, detailed illustration',
size: { desktop: [512, 512], mobile: [256, 256] },
},
{
title: 'Tokyo alley',
prompt: 'a narrow alley in Tokyo at night, neon signs, rain-wet pavement, cinematic',
size: { desktop: [288, 480], mobile: [192, 320] },
},
{
title: 'Aurora cabin',
prompt:
'a log cabin under a green aurora, snowy pine forest, starry night, long-exposure photograph',
size: { desktop: [480, 288], mobile: [320, 192] },
},
{
title: 'Origami dragon',
prompt: 'an orange origami paper dragon on a dark wooden desk, macro photo, soft window light',
size: { desktop: [512, 512], mobile: [256, 256] },
},
{
title: 'Retro robot',
prompt: 'a tin toy robot on a 1960s advertisement poster, bold halftone print, primary colors',
size: { desktop: [320, 480], mobile: [256, 384] },
},
{
title: 'Koi pond',
prompt: 'koi fish in an inky dark pond seen from above, lily pads, gold and white, minimalist',
size: { desktop: [512, 512], mobile: [256, 256] },
},
{
title: 'Isometric café',
prompt: 'a cozy isometric coffee shop diorama, warm lamps, pastel colors, detailed 3d render',
size: { desktop: [512, 512], mobile: [256, 256] },
},
{
title: 'Desert caravan',
prompt:
'minimalist sand dunes at sunset with a tiny camel caravan on the ridge, vast negative space',
size: { desktop: [512, 256], mobile: [512, 256] },
},
{
title: 'Watercolor edit',
prompt: 'make it a watercolor painting',
size: { desktop: [512, 512], mobile: [256, 256] },
ref: 'samples/demo_256.png',
},
{
title: 'Sketch edit',
prompt: 'turn it into a loose pencil sketch with light cross-hatching',
size: { desktop: [512, 512], mobile: [256, 256] },
ref: 'samples/demo_256.png',
},
]
|