Skip to content

Commit 7013484

Browse files
committed
Fix agent_actor bug.
1 parent a137861 commit 7013484

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

llmstack/apps/runner/agent_actor.py

-7
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,6 @@ async def _process_output(self):
189189

190190
elif controller_output.type == AgentControllerDataType.TOOL_CALLS_END:
191191
tool_calls = self._stitched_data["agent"][str(message_index)].data.tool_calls
192-
self._agent_controller.process(
193-
AgentControllerData(
194-
type=AgentControllerDataType.TOOL_CALLS_END,
195-
data=AgentToolCallsMessage(tool_calls=tool_calls),
196-
),
197-
)
198-
199192
for tool_call in tool_calls:
200193
tool_call_args = tool_call.arguments
201194
try:

0 commit comments

Comments
 (0)