fix(agents): classify replay-invalid connection mismatches

This commit is contained in:
Daniel Dali
2026-04-14 10:56:40 +01:00
committed by Altay
parent 943cb47274
commit 89fbd197ea
3 changed files with 10 additions and 1 deletions

View File

@@ -70,6 +70,12 @@ describe("formatAssistantErrorText", () => {
expect(result).toContain("Session history looks corrupted");
expect(result).toContain("/new");
});
it("returns a recovery hint for replay-invalid connection mismatch errors", () => {
const msg = makeAssistantError("401 input item ID does not belong to this connection");
const result = formatAssistantErrorText(msg);
expect(result).toContain("Session history or replay state is invalid");
expect(result).toContain("/new");
});
it("handles JSON-wrapped role errors", () => {
const msg = makeAssistantError('{"error":{"message":"400 Incorrect role information"}}');
const result = formatAssistantErrorText(msg);

View File

@@ -1195,6 +1195,9 @@ describe("classifyProviderRuntimeFailureKind", () => {
expect(classifyProviderRuntimeFailureKind("tool_use.input: Field required")).toBe(
"replay_invalid",
);
expect(
classifyProviderRuntimeFailureKind("401 input item ID does not belong to this connection"),
).toBe("replay_invalid");
});
it("does not classify generic config errors that mention proxy settings as proxy failures", () => {

View File

@@ -320,7 +320,7 @@ const DNS_ERROR_RE = /\benotfound\b|\beai_again\b|\bgetaddrinfo\b|\bno such host
const INTERRUPTED_NETWORK_ERROR_RE =
/\beconnrefused\b|\beconnreset\b|\beconnaborted\b|\benetreset\b|\behostunreach\b|\behostdown\b|\benetunreach\b|\bepipe\b|\bsocket hang up\b|\bconnection refused\b|\bconnection reset\b|\bconnection aborted\b|\bnetwork is unreachable\b|\bhost is unreachable\b|\bfetch failed\b|\bconnection error\b|\bnetwork request failed\b/i;
const REPLAY_INVALID_RE =
/\bprevious_response_id\b.*\b(?:invalid|unknown|not found|does not exist|expired|mismatch)\b|\btool_(?:use|call)\.(?:input|arguments)\b.*\b(?:missing|required)\b|\bincorrect role information\b|\broles must alternate\b/i;
/\bprevious_response_id\b.*\b(?:invalid|unknown|not found|does not exist|expired|mismatch)\b|\btool_(?:use|call)\.(?:input|arguments)\b.*\b(?:missing|required)\b|\bincorrect role information\b|\broles must alternate\b|\binput item id does not belong to this connection\b/i;
const SANDBOX_BLOCKED_RE =
/\bapproval is required\b|\bapproval timed out\b|\bapproval was denied\b|\bblocked by sandbox\b|\bsandbox\b.*\b(?:blocked|denied|forbidden|disabled|not allowed)\b/i;