Update app.py
Browse files
app.py
CHANGED
@@ -122,8 +122,8 @@ with gr.Blocks(title="Audio Processing and Information Extraction") as interface
|
|
122 |
nested_ner_checkbox = gr.Checkbox(label="Enable Nested NER")
|
123 |
|
124 |
with gr.Row():
|
125 |
-
transcription_output = gr.Textbox(label="Transcription (Urdu)",
|
126 |
-
translation_output = gr.Textbox(label="Translation (English)",
|
127 |
|
128 |
with gr.Row():
|
129 |
extraction_output = gr.HighlightedText(label="Extracted Information")
|
|
|
122 |
nested_ner_checkbox = gr.Checkbox(label="Enable Nested NER")
|
123 |
|
124 |
with gr.Row():
|
125 |
+
transcription_output = gr.Textbox(label="Transcription (Urdu)", interactive=False) # Corrected to interactive=False
|
126 |
+
translation_output = gr.Textbox(label="Translation (English)", interactive=False) # Corrected to interactive=False
|
127 |
|
128 |
with gr.Row():
|
129 |
extraction_output = gr.HighlightedText(label="Extracted Information")
|