From b403bac5004dee4e6ca1daa29ea806b8aba08c37 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 13 Oct 2023 15:33:12 -0700 Subject: [PATCH] refactor(utils.py): clean up print statement --- litellm/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index 829053bee..b618272ac 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -424,7 +424,6 @@ class Logging: ## BUILD COMPLETE STREAMED RESPONSE if self.stream: - print(f"stream result: {result}") if result.choices[0].finish_reason: # if it's the last chunk self.streaming_chunks.append(result) complete_streaming_response = litellm.stream_chunk_builder(self.streaming_chunks)