mirror of
https://github.com/Ladebeze66/llm_lab_perso.git
synced 2025-12-13 09:06:50 +01:00
13 lines
475 B
Batchfile
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 |