From a61329eb855b1655d9908103efb44d69ba054fcb Mon Sep 17 00:00:00 2001 From: davegilligan Date: Fri, 15 May 2026 18:56:02 +0200 Subject: [PATCH] Route Whisper to chloe localhost (127.0.0.1:20019) Co-Authored-By: Claude Sonnet 4.6 --- api/transcribe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/transcribe.php b/api/transcribe.php index 7d839b8..619cf96 100644 --- a/api/transcribe.php +++ b/api/transcribe.php @@ -143,7 +143,7 @@ function transcribeViaWhisperGpu(array $file, string $language, bool $diarize, i string $model, int $beamSize, string $task, bool $vadFilter, string $initPrompt): array { - $whisperBase = 'http://194.93.49.14:20019'; + $whisperBase = 'http://127.0.0.1:20019'; $endpoint = $diarize ? $whisperBase . '/transcribe/diarize' : $whisperBase . '/transcribe'; $boundary = '----DBN' . bin2hex(random_bytes(8));