mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Update streaming.py. Provide Type Annotation for empty dict
This commit is contained in:
parent
c70a3c7093
commit
ec0cd5c17d
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ class FileContentStreamingResponse:
|
|||
return response
|
||||
|
||||
def _sync_hidden_params(self) -> None:
|
||||
litellm_params = {}
|
||||
litellm_params: dict[str, Any] = {}
|
||||
if self.logging_obj is not None:
|
||||
litellm_params = (
|
||||
self.logging_obj.model_call_details.get("litellm_params", {}) or {}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue