File size: 466 Bytes
06afa75 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @echo off
chcp 65001
setlocal enabledelayedexpansion
REM Get current script directory
set "SCRIPT_DIR=%~dp0"
set "BASE_DIR=%SCRIPT_DIR%llamaCuda130"
set "SERVER_PATH=%BASE_DIR%\llama-server.exe"
set "MODEL_PATH=%BASE_DIR%\Sakura-14B-Qwen2beta-v0.9.2_IQ4_XS.gguf"
title SakuraLLM-GPU port 2841
"%SERVER_PATH%" -m "%MODEL_PATH%" -t 8 -c 4096 -ngl 999 --repeat-penalty 1.2 --temp 0 --top-k 10 --top-p 0.1 -a "Sakura-14B-Qwen2beta-v0.9.2_IQ4_XS" --port 2841
pause
|