Are you an LLM? You can read better optimized documentation at /api/@nhtio/adk/batteries/llm/anthropic_messages/helpers/variables/defaultRenderAnthropicThinkingBlocks.md for this page in Markdown format
Variable: defaultRenderAnthropicThinkingBlocks
ts
const defaultRenderAnthropicThinkingBlocks: (input: {
model: string;
prefixFingerprint: string;
replayCompatibility: readonly string[];
thought: Thought;
warn?: (msg: string) => void;
}) => ContentBlockParam[] = renderAnthropicThinkingBlocks;Defined in: src/batteries/llm/anthropic_messages/helpers.ts:450
Default thinking replay renderer.
Converts an eligible stored Anthropic thinking payload into byte-exact wire blocks.
Parameters
| Parameter | Type |
|---|---|
input | { model: string; prefixFingerprint: string; replayCompatibility: readonly string[]; thought: Thought; warn?: (msg: string) => void; } |
input.model | string |
input.prefixFingerprint | string |
input.replayCompatibility | readonly string[] |
input.thought | Thought |
input.warn? | (msg: string) => void |
Returns
ContentBlockParam[]