Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -28,13 +28,13 @@ with demo:
|
|
28 |
out2 = gr.Textbox()
|
29 |
out3 = gr.Textbox()
|
30 |
|
31 |
-
inp.change(fn=
|
32 |
inputs=inp,
|
33 |
-
outputs=
|
34 |
-
inp.change(fn=
|
35 |
inputs=inp,
|
36 |
-
outputs=
|
37 |
-
inp.change(fn=
|
38 |
inputs=inp,
|
39 |
-
outputs=
|
40 |
demo.launch()
|
|
|
28 |
out2 = gr.Textbox()
|
29 |
out3 = gr.Textbox()
|
30 |
|
31 |
+
inp.change(fn=f1,
|
32 |
inputs=inp,
|
33 |
+
outputs=out1)
|
34 |
+
inp.change(fn=f2,
|
35 |
inputs=inp,
|
36 |
+
outputs=out2)
|
37 |
+
inp.change(fn=f3,
|
38 |
inputs=inp,
|
39 |
+
outputs=out3)
|
40 |
demo.launch()
|