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));