Spaces:
Runtime error
Runtime error
Jesus Carrasco
commited on
Commit
•
13081ab
1
Parent(s):
9c25fae
Update app.py
Browse files
app.py
CHANGED
@@ -27,10 +27,11 @@ def translate_text(text, target_language):
|
|
27 |
# Define the Gradio interface
|
28 |
language_options = ["Spanish", "French", "Italian", "Ukrainian"]
|
29 |
inputs = [
|
30 |
-
gr.
|
31 |
-
gr.
|
32 |
]
|
33 |
-
outputs = gr.
|
|
|
34 |
|
35 |
iface = gr.Interface(fn=translate_text, inputs=inputs, outputs=outputs, title="Language Translator")
|
36 |
|
|
|
27 |
# Define the Gradio interface
|
28 |
language_options = ["Spanish", "French", "Italian", "Ukrainian"]
|
29 |
inputs = [
|
30 |
+
gr.component.TextInput(lines=5, label="Enter text to translate:"),
|
31 |
+
gr.component.Dropdown(choices=language_options, label="Select target language:"),
|
32 |
]
|
33 |
+
outputs = gr.component.Textbox(label="Translated text:")
|
34 |
+
|
35 |
|
36 |
iface = gr.Interface(fn=translate_text, inputs=inputs, outputs=outputs, title="Language Translator")
|
37 |
|