mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix passthrough of atranscription into kwargs going to upstream provider
This commit is contained in:
parent
208cd5fcb5
commit
6249f4efa5
1 changed files with 1 additions and 2 deletions
|
|
@ -5362,8 +5362,7 @@ def transcription(
|
|||
proxy_server_request = kwargs.get("proxy_server_request", None)
|
||||
model_info = kwargs.get("model_info", None)
|
||||
metadata = kwargs.get("metadata", None)
|
||||
atranscription = kwargs.get("atranscription", False)
|
||||
atranscription = kwargs.get("atranscription", False)
|
||||
atranscription = kwargs.pop("atranscription", False)
|
||||
litellm_logging_obj: LiteLLMLoggingObj = kwargs.get("litellm_logging_obj") # type: ignore
|
||||
extra_headers = kwargs.get("extra_headers", None)
|
||||
kwargs.pop("tags", [])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue