diff --git a/src/crewai/agents/agent_adapters/langgraph/structured_output_converter.py b/src/crewai/agents/agent_adapters/langgraph/structured_output_converter.py index 322c4317d..85ea4b2ca 100644 --- a/src/crewai/agents/agent_adapters/langgraph/structured_output_converter.py +++ b/src/crewai/agents/agent_adapters/langgraph/structured_output_converter.py @@ -10,6 +10,7 @@ class LangGraphConverterAdapter(BaseConverterAdapter): def __init__(self, agent_adapter: Any) -> None: """Initialize the converter adapter with a reference to the agent adapter""" + super().__init__(agent_adapter) # type: ignore self.agent_adapter = agent_adapter self._output_format: str | None = None self._schema: str | None = None