removing unnecessary logs

This commit is contained in:
dhruvladia-sarvam
2026-03-02 20:38:39 +05:30
parent 1242f1c10e
commit f386722ef9
2 changed files with 1 additions and 5 deletions

View File

@@ -516,10 +516,7 @@ class SarvamSTTService(STTService):
# Headers are supplied through request_options because this is a
# documented SDK parameter that survives SDK signature changes.
request_options = {"additional_headers": self._sdk_headers}
logger.debug(
f"Sarvam STT connect request_options.additional_headers: "
f"{request_options['additional_headers']}"
)
attempts = [kwargs]
if "prompt" in kwargs:
attempts.append({k: v for k, v in kwargs.items() if k != "prompt"})

View File

@@ -1021,7 +1021,6 @@ class SarvamTTSService(InterruptibleTTSService):
self._websocket = await websocket_connect(
self._websocket_url,
additional_headers=ws_additional_headers,
user_agent_header=None,
)
logger.debug("Connected to Sarvam TTS Websocket")
await self._send_config()