diff --git a/src/crewai/agents/agent_adapters/base_converter_adapter.py b/src/crewai/agents/agent_adapters/base_converter_adapter.py index 0bb9128d5..557e627f3 100644 --- a/src/crewai/agents/agent_adapters/base_converter_adapter.py +++ b/src/crewai/agents/agent_adapters/base_converter_adapter.py @@ -2,6 +2,12 @@ from abc import ABC, abstractmethod class BaseConverterAdapter(ABC): + """Base class for all converter adapters in CrewAI. + + This abstract class defines the common interface and functionality that all + converter adapters must implement for converting structured output. + """ + def __init__(self, agent_adapter): self.agent_adapter = agent_adapter @@ -19,6 +25,5 @@ class BaseConverterAdapter(ABC): @abstractmethod def post_process_result(self, result: str) -> str: - """Post-process the result to ensure it matches the expected format.""" - # Transform the string result to the expected format. + """Post-process the result to ensure it matches the expected format: string.""" pass