Spaces:
Sleeping
Sleeping
File size: 231 Bytes
44d337e |
1 2 3 4 5 |
# space.yaml (must live at the root of the repo)
sdk: fastapi # tells Spaces to launch with uvicorn
python_version: "3.10" # optional; 3.10 by default
entrypoint: app:app # module:variable (app.py defines 'app')
|