Spaces:
Runtime error
Runtime error
Pranjal12345
commited on
Commit
•
f2021d6
1
Parent(s):
0e0471b
dsdasd
Browse files
main.py
CHANGED
@@ -25,3 +25,7 @@ def transcribe_audio():
|
|
25 |
return {"transcription": transcription[0]}
|
26 |
|
27 |
|
|
|
|
|
|
|
|
|
|
25 |
return {"transcription": transcription[0]}
|
26 |
|
27 |
|
28 |
+
if __name__ == "__main__":
|
29 |
+
import uvicorn
|
30 |
+
uvicorn.run(app, host="0.0.0.0", port=8000)
|
31 |
+
|