mathstutor / run_api.bat
ghadgemadhuri92's picture
agent tested with the prompt: Calculate 15 * 12 then add 50.
565a379
raw
history blame contribute delete
137 Bytes
@echo off
echo Starting FastAPI Server...
call .venv\Scripts\activate
uvicorn app.api.main:app --reload --host 0.0.0.0 --port 8000
pause