diff --git a/src/agentcore/agents/strategies.py b/src/agentcore/agents/strategies.py index 0c1452f..719d9da 100644 --- a/src/agentcore/agents/strategies.py +++ b/src/agentcore/agents/strategies.py @@ -175,7 +175,7 @@ async def execute(self, **kwargs: Any) -> IS_FINAL_STEP: self._actions.clear_current_intent() self._actions.clear_current_trace() self._actions.add_history_trace(trace) - return False + return False async def build_action(self) -> Action | None: return await self._caller.call(self._action_builder.execute)