corrected url

This commit is contained in:
Mathieu B 2022-11-28 22:15:09 +01:00
parent 556b0553e3
commit 94e03b95ec

2
api.py
View File

@ -38,7 +38,7 @@ def text_recognition_whisperasr(audio_file):
} }
# TODO: add to config # TODO: add to config
response = requests.post('http://192.168.1.208:9000/asr', params=params, headers=headers, files=files) response = requests.post('https://whisper.broillet.ch/asr', params=params, headers=headers, files=files)
return json.loads(response.text)['text'] return json.loads(response.text)['text']