Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asFrants
/
TextSummarization
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
28a5857
TextSummarization
/
run.py
asFrants
add new files for docker and fast api
d95cbea
12 months ago
raw
Copy download link
history
blame
Safe
155 Bytes
import
uvicorn
if
__name__ ==
"__main__"
:
uvicorn.run(
app=
"main:app"
,
host=
"localhost"
,
port=
8000
,
reload=
True
)