Anrn-12B-R1 / Start-Llama-Service.bat
chirs345678's picture
Rollback standard-layout cleanup
dbb8e24 verified
Raw
History Blame Contribute Delete
431 Bytes
@echo off
setlocal
chcp 65001 >nul
title Anru Llama Service Bootstrap
echo [Anru] Checking llama.cpp runtime, model files, and port...
powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%~dp0llama-bootstrap.ps1" -Port 8091 -Context 131072
if errorlevel 1 (
echo.
echo [Anru] Startup failed. Read the message above.
pause
exit /b 1
)
echo [Anru] llama-server is ready and the Web UI has been opened.
exit /b 0