Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ with gr.Blocks() as transcriberUI:
|
|
| 61 |
|
| 62 |
return text
|
| 63 |
|
| 64 |
-
def ask_question_callback():
|
| 65 |
if ask_question.value:
|
| 66 |
response = respond_to_question(transcript_output.value, ask_question.value)
|
| 67 |
response_output.visible = True
|
|
|
|
| 61 |
|
| 62 |
return text
|
| 63 |
|
| 64 |
+
def ask_question_callback(transcribe_output,ask_question):
|
| 65 |
if ask_question.value:
|
| 66 |
response = respond_to_question(transcript_output.value, ask_question.value)
|
| 67 |
response_output.visible = True
|