KingNish commited on
Commit
5d87e58
1 Parent(s): 1c4647b

A fix in examples

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -49,6 +49,7 @@ examples = [
49
  "an anime illustration of a wiener schnitzel",
50
  "Create mage of Modern house in minecraft style",
51
  "Imagine steve jobs as Star Wars movie character",
 
52
  "Photo of a young woman with long, wavy brown hair tied in a bun and glasses. She has a fair complexion and is wearing subtle makeup, emphasizing her eyes and lips. She is dressed in a black top. The background appears to be an urban setting with a building facade, and the sunlight casts a warm glow on her face.",
53
  ]
54
 
@@ -92,7 +93,7 @@ with gr.Blocks() as demo:
92
  examples=examples,
93
  fn=generate_image,
94
  inputs=[prompt],
95
- outputs=[result, seed],
96
  cache_examples="lazy"
97
  )
98
 
 
49
  "an anime illustration of a wiener schnitzel",
50
  "Create mage of Modern house in minecraft style",
51
  "Imagine steve jobs as Star Wars movie character",
52
+ "Lion",
53
  "Photo of a young woman with long, wavy brown hair tied in a bun and glasses. She has a fair complexion and is wearing subtle makeup, emphasizing her eyes and lips. She is dressed in a black top. The background appears to be an urban setting with a building facade, and the sunlight casts a warm glow on her face.",
54
  ]
55
 
 
93
  examples=examples,
94
  fn=generate_image,
95
  inputs=[prompt],
96
+ outputs=[result, seed, latency],
97
  cache_examples="lazy"
98
  )
99