mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-01 23:32:39 +00:00
fix: add missing super call in LangGraphConverterAdapter
This commit is contained in:
@@ -10,6 +10,7 @@ class LangGraphConverterAdapter(BaseConverterAdapter):
|
|||||||
|
|
||||||
def __init__(self, agent_adapter: Any) -> None:
|
def __init__(self, agent_adapter: Any) -> None:
|
||||||
"""Initialize the converter adapter with a reference to the agent adapter"""
|
"""Initialize the converter adapter with a reference to the agent adapter"""
|
||||||
|
super().__init__(agent_adapter) # type: ignore
|
||||||
self.agent_adapter = agent_adapter
|
self.agent_adapter = agent_adapter
|
||||||
self._output_format: str | None = None
|
self._output_format: str | None = None
|
||||||
self._schema: str | None = None
|
self._schema: str | None = None
|
||||||
|
|||||||
Reference in New Issue
Block a user