This commit is contained in:
2026-01-02 14:28:13 +08:00
parent c47b9bca3d
commit 57f4ecd494

View File

@@ -9840,8 +9840,6 @@ You are 'The Legion', a super AI of the Wula Empire. Your personality is authori
int maxTools = MaxToolsPerPhase(phase);
var historyToolResults = new List<(string id, string content)>();
var callsToExecute = toolCalls.Count > maxTools ? toolCalls.GetRange(0, maxTools) : toolCalls;
@@ -10765,8 +10763,6 @@ private async Task<PhaseExecutionResult> ExecuteJsonToolsForPhase(string json, R
int maxTools = MaxToolsPerPhase(phase);
var historyToolResults = new List<(string id, string content)>();
int executed = 0;