Spaces:
Sleeping
Sleeping
File size: 439 Bytes
494c89b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
@echo off
REM Start Kiro LLM API Server
REM OpenAI-compatible API using Kiro tokens
cd /d "%~dp0\.."
echo.
echo ========================================
echo Kiro LLM API Server
echo ========================================
echo.
REM Check if httpx is installed
python -c "import httpx" 2>nul
if errorlevel 1 (
echo Installing dependencies...
pip install httpx aiofiles
)
REM Start server
python -m api.run_llm_server
pause
|