Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ with gr.Blocks() as demo:
|
|
36 |
translated_textbox = gr.Textbox(lines=5, placeholder="", label="Translated Text")
|
37 |
info_label = gr.HTML("")
|
38 |
btn = gr.Button("GetNow")
|
39 |
-
btn.click(run_lora, inputs=[
|
40 |
|
41 |
app.queue()
|
42 |
app.launch()
|
|
|
36 |
translated_textbox = gr.Textbox(lines=5, placeholder="", label="Translated Text")
|
37 |
info_label = gr.HTML("")
|
38 |
btn = gr.Button("GetNow")
|
39 |
+
btn.click(run_lora, inputs=[input_textbox],outputs=[translated_textbox, info_label])
|
40 |
|
41 |
app.queue()
|
42 |
app.launch()
|