aurora / start.sh
yasyn14's picture
Add application file
56e76e3
raw
history blame contribute delete
214 Bytes
echo "πŸ” Validating model..."
python scripts/validate_model.py
if [ $? -eq 0 ]; then
echo "πŸš€ Starting API server..."
fastapi dev main.py
else
echo "πŸ›‘ Model validation failed. Server not started."
fi