Closed ItsSimko closed 2 weeks ago
This pull request fixes a bug in the whisper endpoint by replacing the hardcoded WHISPERAUDIO_ENDPOINT with the dynamic app_settings.WHISPERAUDIO_ENDPOINT in the client.py file. The change ensures that the correct endpoint is used when sending audio requests, both for SSL and non-SSL connections.
classDiagram
class AppSettings {
+String WHISPERAUDIO_ENDPOINT
+String SSL_ENABLE
+String SSL_SELFCERT
}
class Client {
+send_audio_to_server()
}
AppSettings --> Client : uses
Change | Details | Files |
---|---|---|
Replace hardcoded WHISPERAUDIO_ENDPOINT with app_settings.WHISPERAUDIO_ENDPOINT |
|
client.py |
Summary by Sourcery
Bug Fixes: