From 335696d0ee25cfd7a0f8be3da5f713aabc618934 Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Thu, 29 Jan 2026 11:52:53 -0800 Subject: [PATCH] drop what was a print that didnt get deleted properly --- lib/crewai/src/crewai/agent/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/crewai/src/crewai/agent/core.py b/lib/crewai/src/crewai/agent/core.py index 5c1c3b76d..787ebc032 100644 --- a/lib/crewai/src/crewai/agent/core.py +++ b/lib/crewai/src/crewai/agent/core.py @@ -1859,7 +1859,6 @@ class Agent(BaseAgent): # Execute the agent (this is called from sync path, so invoke returns dict) result = cast(dict[str, Any], executor.invoke(inputs)) output = result.get("output", "") - (f"output: {output}") # Handle response format conversion formatted_result: BaseModel | None = None