From 86e01efb4e563750513c1f035eaeaf435b0e90f0 Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Wed, 31 May 2023 18:51:55 +0200 Subject: [PATCH] remove domain --- jarvis/utils/whisper_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jarvis/utils/whisper_utils.py b/jarvis/utils/whisper_utils.py index 1acea11..5b6ef29 100644 --- a/jarvis/utils/whisper_utils.py +++ b/jarvis/utils/whisper_utils.py @@ -65,5 +65,5 @@ def whisper_asr_stt(audio_file): } # TODO: add to config - response = requests.post('https://whisper.broillet.ch/asr', params=params, headers=headers, files=files) + response = requests.post('https://whisper.yourdomain.xyz/asr', params=params, headers=headers, files=files) return json.loads(response.text)['text']