mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
fix lining
This commit is contained in:
parent
e60c7a3b85
commit
a9c9967b6d
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