Skip to content

Commit

Permalink
Fix agent_actor bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
vegito22 committed Dec 11, 2024
1 parent a137861 commit 7013484
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions llmstack/apps/runner/agent_actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,6 @@ async def _process_output(self):

elif controller_output.type == AgentControllerDataType.TOOL_CALLS_END:
tool_calls = self._stitched_data["agent"][str(message_index)].data.tool_calls
self._agent_controller.process(
AgentControllerData(
type=AgentControllerDataType.TOOL_CALLS_END,
data=AgentToolCallsMessage(tool_calls=tool_calls),
),
)

for tool_call in tool_calls:
tool_call_args = tool_call.arguments
try:
Expand Down

0 comments on commit 7013484

Please sign in to comment.