You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(agent): auto-continue on silent-fail tool calls too
Promissory-pattern catch covered 'let me try another approach' but
missed the related failure: agent gave a confident final answer
('There are no orphan nodes') based on a tool call that exited
non-zero with empty stdout (e.g. 'graph json | grep -q ...').
Add a second auto-continue trigger: last tool exit != 0 AND last
tool stdout is empty AND model wrote a non-empty final answer.
Forces the model to re-derive its conclusion via a different query
(e.g. run-js with explicit return) before answering.
0 commit comments