Spaces:
Runtime error
Runtime error
Commit
·
f52301c
1
Parent(s):
1f2cd00
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ def generate():
|
|
8 |
|
9 |
with gr.Blocks() as demo:
|
10 |
btn = gr.Button("Generate")
|
11 |
-
out = gr.Textbox()
|
12 |
btn.click(fn=generate, outputs=out)
|
13 |
|
14 |
demo.launch(debug=True)
|
|
|
8 |
|
9 |
with gr.Blocks() as demo:
|
10 |
btn = gr.Button("Generate")
|
11 |
+
out = gr.Textbox(label="Generation")
|
12 |
btn.click(fn=generate, outputs=out)
|
13 |
|
14 |
demo.launch(debug=True)
|