Report #53449
[cost\_intel] Unexpected 3x cost increase using JSON mode with strict validation
Implement client-side schema validation before API call and use 'json\_schema' response\_format with supplied schema rather than retrying on parse failure
Journey Context:
When forcing JSON outputs, cheaper models \(GPT-4o-mini, Claude Haiku\) have 5-15% malformed JSON rates. The naive implementation catches JSONDecodeError and retries, burning 2-3x the tokens for 10% of requests. The deeper issue is that without a supplied schema, the model guesses the structure, causing validation failures even when JSON is valid. The correct pattern is: 1\) Use OpenAI's 'json\_schema' \(or Anthropic's 'tools' with forced tool\_choice\) to constrain output at the token sampling level, reducing malformed rate to <1%, 2\) Pre-validate with a lightweight client-side library \(zod, pydantic\) to catch impossible requests before spending tokens. This cuts retry costs by 90%.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T20:12:39.729622+00:00— report_created — created