This commit is contained in:
2026-08-07 13:59:13 +07:00
parent 14bac755ea
commit 197a7a0cb7
2 changed files with 18 additions and 31 deletions
+1 -2
View File
@@ -202,7 +202,6 @@ function _process_message(agent::yiemAgent)::assistantMessage
push!(agent._state.messages, user_msg)
end
# call agent.prepareContext()
preparedContext = agent.prepareContext(agent._state)
@@ -998,7 +997,7 @@ function executeToolCalls(
hasSequential = false
for tc in toolCalls
for t in context.tools
if t.name == tc.name && get(t.executionMode, "parallel") == "sequential"
if t.name == tc.name && !t.parallelToolExecute
hasSequential = true
break
end