27 lines
711 B
Batchfile
27 lines
711 B
Batchfile
@echo off
|
||
setlocal
|
||
chcp 65001 >NUL
|
||
set PORT=7860
|
||
echo Installing dependencies...
|
||
python -m pip install --upgrade pip
|
||
if errorlevel 1 goto :fail
|
||
pip install -r requirements.txt
|
||
if errorlevel 1 goto :fail
|
||
echo Starting НадTavern on http://127.0.0.1:%PORT%/
|
||
start "НадTavern UI" python -c "import time,webbrowser,os; time.sleep(1); webbrowser.open('http://127.0.0.1:%s/ui/editor.html'%os.environ.get('PORT','7860'))"
|
||
python -m uvicorn agentui.api.server:app --host 127.0.0.1 --port %PORT% --log-level info
|
||
if errorlevel 1 goto :fail
|
||
goto :end
|
||
|
||
:fail
|
||
echo.
|
||
echo Server failed with errorlevel %errorlevel%.
|
||
echo Check the console output above and the file agentui.log for details.
|
||
pause
|
||
|
||
:end
|
||
pause
|
||
endlocal
|
||
|
||
|