This commit is contained in:
2026-08-12 04:33:19 +07:00
parent 06d51c1ee9
commit 6c96409969
3 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -342,8 +342,8 @@ agentState("You are a helpful assistant", OrderedDict{String, agentTool}(), agen
"""
function agentState(
systemPrompt::String="",
model::llmModel=llmModel{String}("", "unknown", "unknown", "", false, String[],
modelCost(0.0, 0.0, 0.0, 0.0), 0, 0),
model=llmModel("model_1", "unknown", "unknown", "", false, String[],
modelCost(0.0, 0.0, 0.0, 0.0), 0, 0),
tools::OrderedDict{String, agentTool}=OrderedDict{String, agentTool}(),
messages::Vector{agentMessage}=agentMessage[],
)