llm_lab_perso/lancer-api.bat
2025-04-21 17:36:30 +02:00

13 lines
475 B
Batchfile

@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