Skip to content

Executor System

Interface

python
class TaskExecutor(ABC):
    @abstractmethod
    async def execute(self, config: dict) -> dict:
        pass

    @abstractmethod
    def validate_config(self, config: dict) -> bool:
        pass

GroundedSearchExecutor

See Grounded Search for details.

Next Steps

Released under the MIT License.