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']