linoyts HF Staff commited on
Commit
f4f5c62
·
verified ·
1 Parent(s): 023b880

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -163,9 +163,15 @@ with gr.Blocks(css=css) as demo:
163
  guidance_scale_2_input = gr.Slider(minimum=0.0, maximum=10.0, step=0.5, value=4, label="Guidance Scale 2 - low noise stage")
164
 
165
  gr.Examples(
166
- examples=[
167
  [
168
- "Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage."
 
 
 
 
 
 
169
  ],
170
  ],
171
  inputs=[prompt_input], outputs=[img_output, seed_input], fn=generate_image, cache_examples="lazy")
 
163
  guidance_scale_2_input = gr.Slider(minimum=0.0, maximum=10.0, step=0.5, value=4, label="Guidance Scale 2 - low noise stage")
164
 
165
  gr.Examples(
166
+ examples=[
167
  [
168
+ "Extreme close-up portrait of a theatrical villain character with chalk-white face paint, blood-red lips stretched into an unsettling wide grin, wild green hair disheveled and unkempt, piercing eyes with dark smudged makeup, dramatic high contrast lighting casting deep shadows across angular facial features, menacing expression with visible teeth, gritty urban atmosphere, cinematic quality, sharp focus on facial details"
169
+ ],
170
+ [
171
+ "Whimsical fiber art sculpture of a wise green alien sage character crafted entirely from soft wool yarn, sitting contentedly in a vintage clawfoot bathtub filled with fluffy white soap bubbles, the yarn figure's earth-tone knitted robes darkened and soggy from bathwater, intricate crochet textures visible on the wet yarn surface, iridescent soap bubbles floating through the air catching rainbow reflections, small rubber duck and bath toys scattered around the tub, warm bathroom lighting creating cozy shadows, steam gently rising from the warm water, the character's embroidered facial features showing peaceful relaxation, macro photography highlighting the contrast between wet yarn fibers and delicate soap foam, quirky handcrafted art piece with playful domestic setting"
172
+ ],
173
+ [
174
+ "Macro photograph of a honey bee delicately perched on vibrant purple lavender blossoms during golden hour, warm amber sunlight filtering through translucent wings, soft bokeh background with gradient sky transitioning from orange to deep blue, dewdrops glistening on flower petals, shallow depth of field emphasizing the bee's fuzzy texture and intricate wing details, peaceful twilight atmosphere, cinematic lighting, ultra-sharp focus on the bee"
175
  ],
176
  ],
177
  inputs=[prompt_input], outputs=[img_output, seed_input], fn=generate_image, cache_examples="lazy")