Spaces:
Runtime error
Runtime error
demo.load(
Browse files
app.py
CHANGED
|
@@ -13,6 +13,10 @@ with gr.Blocks() as demo:
|
|
| 13 |
text_2 = gr.Textbox()
|
| 14 |
|
| 15 |
|
| 16 |
-
demo.load(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
demo.launch()
|
|
|
|
| 13 |
text_2 = gr.Textbox()
|
| 14 |
|
| 15 |
|
| 16 |
+
demo.load(
|
| 17 |
+
echo,
|
| 18 |
+
inputs=[text_1],
|
| 19 |
+
outputs=[text_2]
|
| 20 |
+
)
|
| 21 |
|
| 22 |
demo.launch()
|