LucyintheSky commited on
Commit
de7878e
·
verified ·
1 Parent(s): 5052c63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -48,6 +48,11 @@ with gr.Blocks(theme=theme) as demo:
48
  img = gr.Image(show_label=False, type='pil')
49
  textbox = gr.Textbox(show_label=False, placeholder='type your prompt in here')
50
  button = gr.Button("generate", variant="primary")
 
 
 
 
 
51
  button.click(fn=generate, inputs=textbox, outputs=img)
52
  textbox.submit(fn=generate, inputs=textbox, outputs=img)
53
 
 
48
  img = gr.Image(show_label=False, type='pil')
49
  textbox = gr.Textbox(show_label=False, placeholder='type your prompt in here')
50
  button = gr.Button("generate", variant="primary")
51
+
52
+ gr.Markdown("""
53
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/650a1281b48ff3906647edd0/OLPLii-mE6VhIiabvJwOm.png)
54
+ """)
55
+
56
  button.click(fn=generate, inputs=textbox, outputs=img)
57
  textbox.submit(fn=generate, inputs=textbox, outputs=img)
58