OmniRoute Ops
08de5a1bbb
fix(translator): inject thinking placeholder for all Claude-shape upstreams
...
prepareClaudeRequest already injects a synthetic thinking content block
when body.thinking is enabled, an assistant turn contains a tool_use,
and no precursor thinking block exists in content[]. The injection was
gated by `provider === "claude" || provider?.startsWith?.("anthropic-
compatible-")`, which excluded other Anthropic-shape upstreams:
- kimi-coding (api.kimi.com/coding/v1/messages)
- glmt (z.ai coding plan Anthropic endpoint)
- zai, agentrouter, and any future provider registered with format: "claude"
These providers enforce the same body-shape contract for thinking mode
and reject multi-turn requests with errors like:
kimi-coding: "thinking is enabled but reasoning_content is missing in
assistant tool call message at index N"
claude (cross-provider replay): "Invalid signature in thinking block"
prepareClaudeRequest is only invoked when targetFormat === FORMATS.CLAUDE
(translator/index.ts:165-168), so the outer provider gate is redundant:
any body reaching this function is destined for a Claude-shape upstream.
Drop the gate; the body of the block executes uniformly for all Claude-
shape targets.
Net effect:
- Single-turn requests unchanged (no tool_use in history yet)
- Multi-turn requests with assistant tool_use turns get a placeholder
thinking block ("." with DEFAULT_THINKING_CLAUDE_SIGNATURE) prepended
- Existing thinking blocks get their signature replaced with the default
(already the case for claude/anthropic-compatible-*; now applied to
kimi-coding and similar — same defensive cross-provider posture)
The `supportsPromptCaching` gate at line 152 (for cache_control insertion)
remains unchanged — that one still wants to be conservative about which
providers support prompt caching.
Includes 5 unit test cases covering: claude native injection (regression),
kimi-coding injection (new), existing-thinking signature replacement,
thinking-off pass-through, and single-turn no-inject.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-11 16:11:22 +00:00
..
2026-05-03 00:37:08 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 13:33:20 -03:00
2026-05-08 17:43:41 -03:00
2026-04-28 02:41:19 -03:00
2026-04-21 04:48:32 -03:00
2026-04-28 02:41:19 -03:00
2026-05-11 01:49:10 +07:00
2026-04-30 14:08:50 -03:00
2026-04-23 14:02:45 +09:00
2026-05-11 10:05:48 -03:00
2026-04-16 05:26:17 -03:00
2026-04-24 13:20:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-19 19:50:30 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 20:48:03 -03:00
2026-04-28 02:41:19 -03:00
2026-04-19 19:50:30 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-27 20:00:10 -03:00
2026-05-10 10:26:22 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 16:12:52 -03:00
2026-05-11 01:45:56 +07:00
2026-04-22 01:39:49 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 10:08:34 -03:00
2026-04-18 11:51:24 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 04:13:28 -03:00
2026-04-16 05:26:17 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-23 01:53:00 -03:00
2026-04-28 02:41:19 -03:00
2026-04-17 17:02:00 -03:00
2026-04-30 01:27:03 -03:00
2026-04-28 02:41:19 -03:00
2026-05-05 09:12:35 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 00:55:06 -03:00
2026-04-28 10:03:39 -03:00
2026-05-03 16:17:38 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 11:03:31 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 09:44:11 -03:00
2026-04-24 09:04:10 -03:00
2026-04-24 13:20:59 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-04 16:45:24 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-04-21 21:12:29 -03:00
2026-04-27 03:53:05 +07:00
2026-04-24 09:22:46 -03:00
2026-05-10 21:16:52 -03:00
2026-05-06 01:21:31 -03:00
2026-05-10 18:33:20 -03:00
2026-05-11 10:05:48 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 20:46:25 -03:00
2026-04-18 10:49:34 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 20:46:25 -03:00
2026-04-16 20:53:35 -03:00
2026-04-16 05:26:17 -03:00
2026-04-22 12:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-17 17:02:00 -03:00
2026-04-24 15:44:59 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-26 14:26:34 -03:00
2026-04-26 14:26:34 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:58:13 -03:00
2026-04-21 21:12:29 -03:00
2026-05-02 04:51:38 -03:00
2026-04-27 00:37:15 -03:00
2026-04-21 21:12:29 -03:00
2026-05-04 19:23:27 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-24 09:04:10 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-28 08:28:09 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-30 16:51:44 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-04 01:34:41 -03:00
2026-04-28 20:46:25 -03:00
2026-04-17 09:00:32 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-26 14:56:25 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 17:08:44 -03:00
2026-04-25 23:51:18 -03:00
2026-04-25 23:51:18 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 13:33:55 -03:00
2026-04-28 20:46:25 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-05-05 09:59:43 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-02 01:48:58 -03:00
2026-04-21 21:12:29 -03:00
2026-05-01 08:35:52 -03:00
2026-05-05 09:59:43 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 18:27:41 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 13:59:03 -03:00
2026-05-06 01:21:31 -03:00
2026-04-21 21:12:29 -03:00
2026-05-01 00:12:33 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-02 04:51:38 -03:00
2026-04-26 23:59:51 -03:00
2026-04-16 05:26:17 -03:00
2026-04-26 23:59:51 -03:00
2026-05-03 00:37:08 -03:00
2026-05-10 00:55:06 -03:00
2026-05-01 13:48:13 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-06 01:21:31 -03:00
2026-04-21 04:13:28 -03:00
2026-04-30 14:08:50 -03:00
2026-04-22 12:26:17 -03:00
2026-04-23 16:57:43 -03:00
2026-04-30 14:08:50 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-11 10:08:34 -03:00
2026-05-10 20:48:03 -03:00
2026-04-28 02:41:19 -03:00
2026-04-24 07:00:21 -03:00
2026-04-27 01:45:36 -03:00
2026-04-24 07:00:21 -03:00
2026-04-24 09:22:46 -03:00
2026-04-17 09:00:32 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 15:29:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-01 16:11:32 -03:00
2026-04-17 11:56:52 -03:00
2026-04-28 10:03:39 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-04 19:23:27 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 17:51:22 -03:00
2026-05-03 16:12:52 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 18:27:41 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 11:16:54 -03:00
2026-04-28 02:16:16 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-02 01:48:58 -03:00
2026-05-10 20:48:03 -03:00
2026-04-16 23:25:58 -03:00
2026-05-05 09:08:18 -03:00
2026-04-30 01:27:03 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 23:47:20 -03:00
2026-04-16 05:26:17 -03:00
2026-04-17 11:56:52 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 11:03:31 -03:00
2026-04-30 01:27:03 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 20:48:03 -03:00
2026-05-11 00:13:20 -03:00
2026-04-28 02:41:19 -03:00
2026-05-05 09:08:18 -03:00
2026-04-28 02:41:19 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 00:55:06 -03:00
2026-05-02 04:51:38 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 00:37:08 -03:00
2026-05-06 01:21:31 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-04-17 09:00:32 -03:00
2026-05-06 01:21:31 -03:00
2026-04-21 21:12:29 -03:00
2026-04-25 16:45:59 -03:00
2026-04-22 12:25:49 -03:00
2026-04-28 10:03:39 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 18:27:41 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 20:48:03 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 20:48:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 16:47:46 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 10:03:39 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-23 16:57:43 -03:00
2026-05-10 13:33:55 -03:00
2026-05-10 18:33:20 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 23:47:20 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-01 16:11:13 -03:00
2026-04-17 16:59:18 -03:00
2026-04-24 07:00:21 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 13:59:03 -03:00
2026-05-01 16:11:13 -03:00
2026-04-24 13:20:59 -03:00
2026-05-10 00:55:06 -03:00
2026-05-01 09:53:51 -03:00
2026-04-24 07:00:21 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 20:48:03 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-18 10:29:30 -03:00
2026-04-28 20:46:25 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-05-01 20:23:31 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 15:48:50 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-28 20:46:25 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-27 02:25:46 -03:00
2026-04-17 16:59:18 -03:00
2026-04-24 09:04:04 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-18 11:44:20 -03:00
2026-05-10 18:33:20 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 21:25:32 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 10:22:07 -03:00
2026-04-25 11:16:54 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 20:48:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-24 07:00:21 -03:00
2026-04-25 09:19:20 -03:00
2026-04-24 07:00:21 -03:00
2026-04-24 07:00:21 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-04 14:13:20 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 14:08:50 -03:00
2026-05-05 09:12:35 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 18:42:05 -03:00
2026-04-16 20:53:35 -03:00
2026-04-21 21:12:29 -03:00
2026-04-26 03:03:52 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-04-17 11:56:52 -03:00
2026-04-19 19:50:30 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 20:48:03 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 09:44:11 -03:00
2026-04-26 03:03:52 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 09:44:11 -03:00
2026-04-25 07:46:33 -03:00
2026-05-02 01:18:37 -03:00
2026-04-30 01:27:03 -03:00
2026-05-04 00:11:25 -03:00
2026-04-17 17:02:00 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-04 14:13:20 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-27 01:09:23 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-01 08:36:24 -03:00
2026-04-26 14:26:34 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-22 12:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 20:46:25 -03:00
2026-04-21 04:13:28 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-04 00:14:16 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-11 16:11:22 +00:00
2026-04-30 01:27:03 -03:00
2026-05-03 17:51:22 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-11 10:06:31 -03:00
2026-05-10 21:25:32 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-11 10:06:05 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-02 06:01:07 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 10:22:07 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-04-27 20:00:10 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 20:48:03 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-04-30 01:27:03 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-04-22 01:39:49 -03:00
2026-04-28 02:41:19 -03:00
2026-04-30 01:27:03 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-01 08:36:24 -03:00
2026-04-24 07:48:19 -03:00