Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ theme = gr.themes.Base(
|
|
17 |
|
18 |
with gr.Blocks(theme=theme) as demo:
|
19 |
img = gr.Image()
|
20 |
-
textbox = gr.Textbox(
|
21 |
button = gr.Button("generate")
|
22 |
button.click(fn=generate, inputs=textbox, outputs=img)
|
23 |
|
|
|
17 |
|
18 |
with gr.Blocks(theme=theme) as demo:
|
19 |
img = gr.Image()
|
20 |
+
textbox = gr.Textbox(show_label=False)
|
21 |
button = gr.Button("generate")
|
22 |
button.click(fn=generate, inputs=textbox, outputs=img)
|
23 |
|