Litellm dev 12 17 2024 p2 (#7277)

* fix(openai/transcription/handler.py): call 'log_pre_api_call' on async calls

* fix(openai/transcriptions/handler.py): call 'logging.pre_call' on sync whisper calls as well

* fix(proxy_cli.py): remove default proxy_cli timeout param

gets passed in as a dynamic request timeout and overrides config values

* fix(langfuse.py): pass litellm httpx client - contains ssl certs (#7052)

Fixes https://github.com/BerriAI/litellm/issues/7046
This commit is contained in:
Krish Dholakia 2024-12-17 14:05:14 -08:00 committed by GitHub
parent b82add11ba
commit 019ddc32d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 67 additions and 1 deletions

View file

@ -125,7 +125,7 @@ def is_port_in_use(port):
)
@click.option(
"--request_timeout",
default=6000,
default=None,
type=int,
help="Set timeout in seconds for completion calls",
)