Update app.py
Browse files
app.py
CHANGED
|
@@ -43,6 +43,7 @@ with demo:
|
|
| 43 |
with gr.Row():
|
| 44 |
output_lang = gr.Dropdown(LANGUAGES, value='French', label='Select output language')
|
| 45 |
|
|
|
|
| 46 |
output_text = gr.Textbox(lines=6, label="Output")
|
| 47 |
|
| 48 |
buton = gr.Button("translate")
|
|
|
|
| 43 |
with gr.Row():
|
| 44 |
output_lang = gr.Dropdown(LANGUAGES, value='French', label='Select output language')
|
| 45 |
|
| 46 |
+
input_text = gr.Textbox(label="Input", lines=6)
|
| 47 |
output_text = gr.Textbox(lines=6, label="Output")
|
| 48 |
|
| 49 |
buton = gr.Button("translate")
|