mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
fix linting error
This commit is contained in:
parent
5876d043b4
commit
8b4ba3ccb8
1 changed files with 3 additions and 3 deletions
|
@ -95,9 +95,9 @@ async def chunk_processor(
|
|||
except json.JSONDecodeError:
|
||||
pass
|
||||
|
||||
complete_streaming_response: litellm.ModelResponse = (
|
||||
litellm.stream_chunk_builder(chunks=all_chunks)
|
||||
)
|
||||
complete_streaming_response: Optional[
|
||||
Union[litellm.ModelResponse, litellm.TextCompletionResponse]
|
||||
] = litellm.stream_chunk_builder(chunks=all_chunks)
|
||||
end_time = datetime.now()
|
||||
|
||||
if passthrough_success_handler_obj.is_vertex_route(url_route):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue