Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SkazuHD
/
docker-test
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
21e0774
docker-test
/
tools
/
ml_service.py
SkazuHD
init space
d660b02
5 months ago
raw
Copy download link
history
blame
212 Bytes
from
llm_engineering.infrastructure.inference_pipeline_api
import
app
# noqa
if
__name__ ==
"__main__"
:
import
uvicorn
uvicorn.run(
"tools.ml_service:app"
, host=
"0.0.0.0"
, port=
8000
, reload=
True
)