feat: improve fallback message when max iterations reached

This commit is contained in:
3927o 2026-02-12 23:57:34 +08:00
parent 890d7cf853
commit dbbbecb25c

View File

@ -243,6 +243,9 @@ class AgentLoop:
break
if final_content is None:
if iteration >= self.max_iterations:
final_content = f"Reached {self.max_iterations} iterations without completion."
else:
final_content = "I've completed processing but have no response to give."
# Log response preview