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 a137861 commit 7013484Copy full SHA for 7013484
llmstack/apps/runner/agent_actor.py
@@ -189,13 +189,6 @@ async def _process_output(self):
189
190
elif controller_output.type == AgentControllerDataType.TOOL_CALLS_END:
191
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
-
199
for tool_call in tool_calls:
200
tool_call_args = tool_call.arguments
201
try:
0 commit comments