Spaces:
Runtime error
Runtime error
File size: 239 Bytes
05b45a5 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
set -e
if [ "$DOWNLOAD_MODEL" = "true" ]; then
python download_model.py --output api/src/models/v1_0
fi
exec uv run --extra $DEVICE --no-sync python -m uvicorn api.src.main:app --host 0.0.0.0 --port 8880 --log-level debug |