mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
linting pt2
This commit is contained in:
parent
d6a70b4e0f
commit
41cdf5fb4e
1 changed files with 2 additions and 2 deletions
|
|
@ -448,6 +448,6 @@ class GenAIHubOrchestrationConfig(OpenAIGPTConfig):
|
|||
json_mode: bool | None = False,
|
||||
):
|
||||
if sync_stream:
|
||||
return SAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType]
|
||||
return SAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType] # streaming_response type matches at runtime
|
||||
else:
|
||||
return AsyncSAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType]
|
||||
return AsyncSAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType] # streaming_response type matches at runtime
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue