File size: 403 Bytes
fbd23c5 ef083d1 fbd23c5 ef083d1 fbd23c5 b38e418 fbd23c5 e5f7079 b38e418 fbd23c5 a5a365b | 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%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
|