From fe35161669733a2a263ab6a40647610a66df2a31 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Thu, 6 Feb 2025 18:35:34 -0500 Subject: [PATCH] drop prints --- src/crewai/llm.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/crewai/llm.py b/src/crewai/llm.py index be6f3426b..3fe43ecb8 100644 --- a/src/crewai/llm.py +++ b/src/crewai/llm.py @@ -266,9 +266,6 @@ class LLM: text_response = response_message.content or "" tool_calls = getattr(response_message, "tool_calls", []) - print("MESSAGES IN LLM:") - print(messages) - # --- 3) Handle callbacks with usage info if callbacks and len(callbacks) > 0: for callback in callbacks: