splendid commited on
Commit
855cc3b
·
1 Parent(s): ed67ab5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -44,5 +44,8 @@ with gr.Blocks(theme=gr.themes.Monochrome()) as demo:
44
  with gr.Column():
45
  output=gr.Image(shape=(200,200))
46
  create_btn.click(fn=inference,inputs=text,outputs=output)
 
 
 
47
 
48
  demo.launch(share=False)
 
44
  with gr.Column():
45
  output=gr.Image(shape=(200,200))
46
  create_btn.click(fn=inference,inputs=text,outputs=output)
47
+
48
+ examples = gr.Examples(examples=["The rainbow car", "Ride the cloud into the night sky"],inputs=[text])
49
+
50
 
51
  demo.launch(share=False)