SakuraLLM / server.bat
dlxj
m
06afa75
raw
history blame contribute delete
466 Bytes
@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