Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -98,5 +98,9 @@ with gr.Blocks(title="RobotsMali ASR") as demo:
|
|
| 98 |
run_btn.click(fn=pipeline, inputs=[audio_input, model_input], outputs=[status, text_output])
|
| 99 |
|
| 100 |
if __name__ == "__main__":
|
| 101 |
-
|
| 102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
run_btn.click(fn=pipeline, inputs=[audio_input, model_input], outputs=[status, text_output])
|
| 99 |
|
| 100 |
if __name__ == "__main__":
|
| 101 |
+
demo.queue().launch(
|
| 102 |
+
server_name="0.0.0.0",
|
| 103 |
+
server_port=7860,
|
| 104 |
+
show_api=False,
|
| 105 |
+
share=False
|
| 106 |
+
)
|