Files
9router/open-sse/utils/codexToolSchema.js
anhtran-ai 781c18d837 fix(codex): strip Unicode-property tool schema patterns Codex rejects
Codex's /responses validator has no Unicode property escapes, so a tool
`pattern` containing `\p{...}` 400s the whole request with `Invalid schema
for function ... is not a 'regex'` — identically on every account, costing a
full combo failover per turn (#3922).

- Add open-sse/utils/codexToolSchema.js: copy-on-write walk that drops only
  `pattern` values carrying a property escape, returning the original
  reference when nothing changed so the caller's schema stays intact for a
  retry against another provider
- Treat `properties` keys as property names, so a field literally called
  `pattern` is never read as the schema keyword; skip escaped literals via
  backslash-parity counting
- Apply it in normalizeCodexTools for both function and namespace sub-tool
  parameters, and log the strip count via dbg
- Add three cases to tests/unit/codex-tool-normalization.test.js
2026-09-10 22:25:47 +07:00

81 lines
3.2 KiB
JavaScript

// Codex-specific tool JSON Schema compatibility.
//
// `https://chatgpt.com/backend-api/codex/responses` validates every function
// tool's `parameters` with a regex engine that does not implement Unicode
// property escapes. A `pattern` such as
//
// "^(?!__.*__$)[^\\p{Cc}\\p{Cf}\\p{Zl}\\p{Zp}\"\\\\./\\[\\]]{1,200}$"
//
// is a perfectly valid ECMAScript `u`-mode regex, but Codex answers
//
// 400 Invalid schema for function 'Artifact': '^\p{Cc}...' is not a 'regex'
// param: tools[0].parameters
//
// The request is deterministically malformed for this provider, so every
// account fails identically and the combo pays a full failover before landing
// somewhere that accepts it (#3922).
//
// Scope guardrail (#3667): this is NOT a global schema sanitizer. Providers
// that do support `\p{...}` keep the constraint untouched — the strip runs only
// on the Codex dispatch path, and only on `pattern` strings that actually
// contain a property escape. Everything else in the schema (including valid
// patterns) passes through byte-identical.
// `\p{...}` / `\P{...}` with an odd number of preceding backslashes — an even
// count means the backslash itself is escaped, so `\\p{Cc}` is a literal "p".
const UNICODE_PROPERTY_ESCAPE = /(^|[^\\])(\\\\)*\\[pP]\{/;
export function hasUnicodePropertyEscape(pattern) {
return typeof pattern === "string" && UNICODE_PROPERTY_ESCAPE.test(pattern);
}
// Copy-on-write walk: returns the original reference when nothing changed, so
// untouched schemas keep object identity and callers can cheaply detect a no-op.
// `properties` is special-cased because its keys are arbitrary property *names*
// (which may themselves be "pattern" or "properties") and must never be read as
// schema keywords; every other key recurses as an ordinary schema node.
function stripNode(node, stats) {
if (Array.isArray(node)) {
let changed = false;
const next = node.map((item) => {
const cleaned = stripNode(item, stats);
if (cleaned !== item) changed = true;
return cleaned;
});
return changed ? next : node;
}
if (!node || typeof node !== "object") return node;
let changed = false;
const next = {};
for (const [key, value] of Object.entries(node)) {
if (key === "pattern" && hasUnicodePropertyEscape(value)) {
stats.removed++;
changed = true;
continue;
}
if (key === "properties" && value && typeof value === "object" && !Array.isArray(value)) {
let propsChanged = false;
const props = {};
for (const [propName, propSchema] of Object.entries(value)) {
const cleaned = stripNode(propSchema, stats);
if (cleaned !== propSchema) propsChanged = true;
props[propName] = cleaned;
}
if (propsChanged) changed = true;
next[key] = propsChanged ? props : value;
continue;
}
const cleaned = stripNode(value, stats);
if (cleaned !== value) changed = true;
next[key] = cleaned;
}
return changed ? next : node;
}
// Remove only the `pattern` constraints Codex's validator rejects.
// Returns the same reference when the schema is already compatible.
export function stripCodexUnsupportedPatterns(schema, stats = { removed: 0 }) {
return stripNode(schema, stats);
}