feat: add async task support

This commit is contained in:
Greyson Lalonde
2025-12-02 16:19:43 -05:00
parent bd95356ec5
commit bf9ccd418a
7 changed files with 959 additions and 24 deletions

View File

@@ -51,6 +51,15 @@ class ConcreteAgentAdapter(BaseAgentAdapter):
# Dummy implementation for MCP tools
return []
async def aexecute_task(
self,
task: Any,
context: str | None = None,
tools: list[Any] | None = None,
) -> str:
# Dummy async implementation
return "Task executed"
def test_base_agent_adapter_initialization():
"""Test initialization of the concrete agent adapter."""