LLM API Blog

Blog

Insights on AI coding, Claude Code optimization, and cost-effective development

Base URL checker & setup generator → · Client integration guides →

Engineering Notes

A 15-Second CPU Stall From One Unclosed XML Tag

Postmortem on a relay process that pegged a single core for fifteen seconds straight. Catastrophic regex backtracking on user-controlled input. Three-character fix, three-layer defense (bounded quantifier + per-request watchdog + nginx next_upstream).

2026-05-06 9
Yazhou Hu
Engineering Notes

Tool-Use IDs in the Wild: When the Same ID Appears Twice

Long Claude Code sessions sometimes produced duplicate `tool_use_id` values from the upstream model. Naive fixes break round-trip correlation; the working answer is occurrence-counter dedup with two-direction translation. With diagnostic dumps for the cases that still slip.

2026-05-06 8
Yazhou Hu