From f3da80a1f1a62a027f4b65232eea97615a06dd40 Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Tue, 14 Oct 2025 15:36:30 -0700 Subject: [PATCH] drop print statements --- lib/crewai/src/crewai/llms/providers/anthropic/completion.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/crewai/src/crewai/llms/providers/anthropic/completion.py b/lib/crewai/src/crewai/llms/providers/anthropic/completion.py index 2a38c1c01..e863715cf 100644 --- a/lib/crewai/src/crewai/llms/providers/anthropic/completion.py +++ b/lib/crewai/src/crewai/llms/providers/anthropic/completion.py @@ -123,7 +123,6 @@ class AnthropicCompletion(BaseLLM): Chat completion response or tool call result """ try: - print("we are calling", messages) # Emit call started event self._emit_call_started_event( messages=messages, @@ -143,7 +142,6 @@ class AnthropicCompletion(BaseLLM): completion_params = self._prepare_completion_params( formatted_messages, system_message, tools ) - print("completion_params", completion_params) # Handle streaming vs non-streaming if self.stream: @@ -294,7 +292,6 @@ class AnthropicCompletion(BaseLLM): ) -> str | Any: """Handle non-streaming message completion.""" try: - print("params", params) response: Message = self.client.messages.create(**params) except Exception as e: