| @echo off | |
| chcp 65001 | |
| setlocal enabledelayedexpansion | |
| REM Get current script directory | |
| set "SCRIPT_DIR=%~dp0" | |
| set "BASE_DIR=%SCRIPT_DIR%KotobaASRLLM_Cuda130" | |
| set "SERVER_PATH=%BASE_DIR%\whisper-server.exe" | |
| set "MODEL_PATH=%BASE_DIR%\ggml-kotoba-whisper-v2.0.bin" | |
| title KotobaASRLLM-GPU port 8969 | |
| "%SERVER_PATH%" -m "%MODEL_PATH%" -l ja -pr -pp -ot 0 --host 127.0.0.1 --port 8969 --output-json | |
| pause | |