Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def toggle(choice):
|
|
32 |
return gr.update(visible=False, value=None), gr.update(visible=True, value=None)
|
33 |
|
34 |
|
35 |
-
with gr.Blocks(
|
36 |
with gr.Row():
|
37 |
with gr.Column():
|
38 |
text_input = gr.Textbox(label="Input the text", value="", max_lines=3)
|
|
|
32 |
return gr.update(visible=False, value=None), gr.update(visible=True, value=None)
|
33 |
|
34 |
|
35 |
+
with gr.Blocks() as demo:
|
36 |
with gr.Row():
|
37 |
with gr.Column():
|
38 |
text_input = gr.Textbox(label="Input the text", value="", max_lines=3)
|