We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a135262 commit 664381aCopy full SHA for 664381a
tests/strands/multiagent/test_base.py
@@ -153,11 +153,12 @@ class TestMultiAgent(MultiAgentBase):
153
def __init__(self):
154
self.invoke_async_called = False
155
self.received_task = None
156
- self.received_invocation_state = None
+ self.received_kwargs = None
157
158
- async def invoke_async(self, task, invocation_state=None):
+ async def invoke_async(self, task, invocation_state, **kwargs):
159
self.invoke_async_called = True
160
self.received_task = task
161
+ self.received_kwargs = kwargs
162
self.received_invocation_state = invocation_state
163
return MultiAgentResult(
164
status=Status.COMPLETED, results={"test": NodeResult(result=Exception("test"), status=Status.COMPLETED)}
0 commit comments