remove domain

This commit is contained in:
Mathieu Broillet 2023-05-31 18:51:55 +02:00
parent 4e140f01c4
commit 86e01efb4e

View File

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