This commit is contained in:
2026-08-15 20:03:01 +07:00
parent 2543e6cbf1
commit fd616409dd
3 changed files with 62 additions and 151 deletions
-2
View File
@@ -317,7 +317,6 @@ mutable struct agentState # Mutable runtime state of an agen
messages::Vector{agentMessage}
pendingToolCalls::Vector{String} # Tool call IDs waiting for results
activeRun::Bool # is agent processing user message?
errorMessage::Union{String, Nothing} # Last error message
end
@@ -354,7 +353,6 @@ function agentState(
deepcopy(tools),
deepcopy(messages),
Vector{String}(),
false,
nothing,
)
end