@echo off title Docent AI Server cd /d "%~dp0backend" echo. echo Docent AI running at http://localhost:8000 echo Press Ctrl+C to stop. echo. py -m uvicorn main:app --reload --host 0.0.0.0 --port 8000 if errorlevel 1 ( echo. echo Server exited with an error. pause )