Spaces:
Runtime error
Runtime error
Anmol Gupta
commited on
gr.outputs not inputs
Browse files
app.py
CHANGED
|
@@ -32,8 +32,8 @@ def transcribe(audio):
|
|
| 32 |
|
| 33 |
return [result_text, out_result]
|
| 34 |
|
| 35 |
-
output_1 = gr.
|
| 36 |
-
output_2 = gr.
|
| 37 |
|
| 38 |
|
| 39 |
gr.Interface(
|
|
|
|
| 32 |
|
| 33 |
return [result_text, out_result]
|
| 34 |
|
| 35 |
+
output_1 = gr.outputs.Textbox(label="Speech to Text")
|
| 36 |
+
output_2 = gr.outputs.Textbox(label="ChatGPT Output")
|
| 37 |
|
| 38 |
|
| 39 |
gr.Interface(
|