Executor System
Interface
python
class TaskExecutor(ABC):
@abstractmethod
async def execute(self, config: dict) -> dict:
pass
@abstractmethod
def validate_config(self, config: dict) -> bool:
passGroundedSearchExecutor
See Grounded Search for details.
Next Steps
- Learn about Grounded Search
- View System Overview