Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Nav772
/
audio-language-translator
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Nav772
commited on
15 days ago
Commit
84ec689
·
verified
·
1 Parent(s):
5cdade1
Create run.py
Browse files
Files changed (1)
hide
show
run.py
+5
-0
run.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import uvicorn
2
+
3
+
if __name__ == "__main__":
4
+
from app import app
5
+
uvicorn.run(app, host="0.0.0.0", port=7860)