Alashazam commited on
Commit
493942e
·
1 Parent(s): fed2558

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -37,5 +37,8 @@ def process1(prompt, modelSelected):
37
  sandbox = gradio.Interface(fn=process1,
38
  inputs=[gradio.Textbox(label="Enter Prompt:"), gradio.Dropdown(model3)],
39
  outputs=[gradio.Image(label="Produced Image")],
 
 
 
40
  title='Text to Image')
41
  sandbox.queue(concurrency_count=20).launch()
 
37
  sandbox = gradio.Interface(fn=process1,
38
  inputs=[gradio.Textbox(label="Enter Prompt:"), gradio.Dropdown(model3)],
39
  outputs=[gradio.Image(label="Produced Image")],
40
+ examples=[["Portrait close up, Elvis Presley, concert hall in the background"],
41
+ ["Marvel Blackwidow portrait close up. building city background"],
42
+ ["A white rabbit wizard, Hogwart University, Castle in the background"]
43
  title='Text to Image')
44
  sandbox.queue(concurrency_count=20).launch()