drewThomasson
commited on
Commit
•
2a7ff02
1
Parent(s):
c0bc93c
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,9 @@ def run_interface():
|
|
32 |
with gr.Blocks() as demo:
|
33 |
with gr.Row():
|
34 |
text_input = gr.Textbox(label="Enter Text", lines=4, placeholder="Type your text here...")
|
35 |
-
language_dropdown = gr.Dropdown(
|
|
|
|
|
36 |
|
37 |
generate_button = gr.Button("Generate Audio")
|
38 |
output_audio = gr.Audio(label="Generated Audio", type="filepath")
|
|
|
32 |
with gr.Blocks() as demo:
|
33 |
with gr.Row():
|
34 |
text_input = gr.Textbox(label="Enter Text", lines=4, placeholder="Type your text here...")
|
35 |
+
language_dropdown = gr.Dropdown(
|
36 |
+
label="Select Language", choices=languages, value="English"
|
37 |
+
)
|
38 |
|
39 |
generate_button = gr.Button("Generate Audio")
|
40 |
output_audio = gr.Audio(label="Generated Audio", type="filepath")
|