Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hanz245
/
whspr
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
whspr
/
app.py
Hanz Pillerva
remove gradio, run uvicorn directly on port 7860
6be828e
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
126 Bytes
import
uvicorn
from
main
import
app
# noqa: F401
if
__name__ ==
"__main__"
:
uvicorn.run(app, host=
"0.0.0.0"
, port=
7860
)