Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -136,5 +136,6 @@ with gr.Blocks(title="Whisper, Vicuna, & TTS Demo") as demo: # Updated title
|
|
136 |
outputs=[transcription_output, transcription_state, audio_output]
|
137 |
)
|
138 |
|
139 |
-
|
140 |
-
|
|
|
|
136 |
outputs=[transcription_output, transcription_state, audio_output]
|
137 |
)
|
138 |
|
139 |
+
if __name__ == '__main__':
|
140 |
+
app.run(debug=True, port=5000) # Run Flask app
|
141 |
+
demo.launch(share=False)
|