From 80c56c004cb49500cd21d2b3aa0a70090d274a1c Mon Sep 17 00:00:00 2001 From: Dan Lemon Date: Thu, 10 Sep 2026 22:26:55 +0200 Subject: [PATCH] chore(soniox): drop explanatory comment on the non-forwarded param set --- litellm/llms/soniox/audio_transcription/handler.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/litellm/llms/soniox/audio_transcription/handler.py b/litellm/llms/soniox/audio_transcription/handler.py index 7832ffa9f54..1725132829e 100644 --- a/litellm/llms/soniox/audio_transcription/handler.py +++ b/litellm/llms/soniox/audio_transcription/handler.py @@ -63,8 +63,6 @@ else: _CLEANUP_TARGETS: Final = TypeAdapter(tuple[str, ...]) -# `language` is translated to `language_hints` upstream; `audio_url`/`file_id`/`response_format` -# are placed by the handler, everything else here is a LiteLLM-only knob. _NOT_FORWARDED_TO_SONIOX: Final[frozenset[str]] = frozenset( (*SONIOX_HANDLER_ONLY_PARAMS, "audio_url", "file_id", "response_format", "language") )