@echo off REM Starting API server in the background powershell -Command "& {Start-Process powershell -ArgumentList '-ExecutionPolicy Bypass -File "".\run-api.ps1"" -background' -WindowStyle Minimized}" echo API server started at http://localhost:8000/v1 echo. echo Access points: echo - Cursor: http://localhost:8000/v1 echo - Obsidian: http://localhost:8000/generate echo - Models: http://localhost:8000/running echo. echo Press any key to close this window... pause > nul