Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,5 +18,5 @@ with gr.Blocks() as myApp:
|
|
| 18 |
with gr.Column(scale=1):
|
| 19 |
out = gr.Textbox(label='ผลลัพธ์')
|
| 20 |
inp.change(guess,inp,out)
|
| 21 |
-
btn.click(fn=answer,
|
| 22 |
myApp.launch()
|
|
|
|
| 18 |
with gr.Column(scale=1):
|
| 19 |
out = gr.Textbox(label='ผลลัพธ์')
|
| 20 |
inp.change(guess,inp,out)
|
| 21 |
+
btn.click(fn=answer,outputs=out)
|
| 22 |
myApp.launch()
|