diff --git a/src/crewai/agents/agent_adapters/langgraph/langgraph_adapter.py b/src/crewai/agents/agent_adapters/langgraph/langgraph_adapter.py index 06c275f7f..d207342ac 100644 --- a/src/crewai/agents/agent_adapters/langgraph/langgraph_adapter.py +++ b/src/crewai/agents/agent_adapters/langgraph/langgraph_adapter.py @@ -270,10 +270,6 @@ class LangGraphAgentAdapter(BaseAgentAdapter): """Convert output format if needed.""" return Converter(llm=llm, text=text, model=model, instructions=instructions) - def _parse_tools(self, tools: List[BaseTool]) -> List[BaseTool]: - """Parse and validate tools.""" - return tools - def configure_structured_output(self, task) -> None: """Configure the structured output for LangGraph.""" self._converter_adapter.configure_structured_output(task)