File size: 423 Bytes
b38e418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@echo off
chcp 65001
setlocal enabledelayedexpansion

title KotobaASRLLM port 8969

REM Get current script directory
set "SCRIPT_DIR=%~dp0"
set "BASE_DIR=%SCRIPT_DIR%KotobaASRLLM_CPU"
set "SERVER_PATH=%BASE_DIR%\whisper-server.exe"
set "MODEL_PATH=%BASE_DIR%\ggml-kotoba-whisper-v2.0.bin"


title KotobaASRLLM port 8969
"%SERVER_PATH%" -m "%MODEL_PATH%" -l ja -pr -pp -ot 0 --host 127.0.0.1 --port 8969 --output-json
pause