Update app.py
Browse files
app.py
CHANGED
|
@@ -11,4 +11,6 @@ with gr.Blocks(title="Copier") as demo:
|
|
| 11 |
with gr.Column():
|
| 12 |
tgt_sentence = gr.Textbox(label="Copy", placeholder="Copy will show here...")
|
| 13 |
btn = gr.Button("Copy!")
|
| 14 |
-
btn.click(fn=copy, inputs=[src_sentence], outputs=[tgt_sentence])
|
|
|
|
|
|
|
|
|
| 11 |
with gr.Column():
|
| 12 |
tgt_sentence = gr.Textbox(label="Copy", placeholder="Copy will show here...")
|
| 13 |
btn = gr.Button("Copy!")
|
| 14 |
+
btn.click(fn=copy, inputs=[src_sentence], outputs=[tgt_sentence])
|
| 15 |
+
|
| 16 |
+
demo.launch()
|