Update app.py
Browse files
app.py
CHANGED
@@ -42,4 +42,4 @@ def whisper_transcribe():
|
|
42 |
return jsonify({'error': 'Transcription failed'}), 500
|
43 |
|
44 |
if __name__ == "__main__":
|
45 |
-
app.run(host="0.0.0.0", debug=True, port=7860)
|
|
|
42 |
return jsonify({'error': 'Transcription failed'}), 500
|
43 |
|
44 |
if __name__ == "__main__":
|
45 |
+
app.run(host="0.0.0.0", debug=True, port=7860, threaded=True)
|