Update app.py
Browse files
app.py
CHANGED
|
@@ -274,15 +274,8 @@ with gr.Blocks(
|
|
| 274 |
variant="primary", # make "primary" so it stands out (default is "secondary")
|
| 275 |
)
|
| 276 |
|
| 277 |
-
model_output_text_box = gr.Textbox(
|
| 278 |
-
|
| 279 |
-
elem_id="model_output_text_box",
|
| 280 |
-
)
|
| 281 |
-
|
| 282 |
-
llm_output_text_box = gr.Textbox(
|
| 283 |
-
label="MyAlexa's Answer",
|
| 284 |
-
elem_id="llm_output_text_box",
|
| 285 |
-
)
|
| 286 |
|
| 287 |
go_button.click(
|
| 288 |
fn=transcribe,
|
|
|
|
| 274 |
variant="primary", # make "primary" so it stands out (default is "secondary")
|
| 275 |
)
|
| 276 |
|
| 277 |
+
model_output_text_box = gr.Textbox(label="Transcribed Text", elem_id="model_output_text_box")
|
| 278 |
+
llm_output_text_box = gr.Textbox(label="MyAlexa's Answer", elem_id="llm_output_text_box")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 279 |
|
| 280 |
go_button.click(
|
| 281 |
fn=transcribe,
|