From 5ed90be3077205fc6897d1a8a2ac82df521e3728 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sun, 16 Mar 2025 20:16:39 -0700 Subject: [PATCH] testing thinking --- claude_sonnet-3-7-bedrock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/claude_sonnet-3-7-bedrock.py b/claude_sonnet-3-7-bedrock.py index 8538763..570069a 100644 --- a/claude_sonnet-3-7-bedrock.py +++ b/claude_sonnet-3-7-bedrock.py @@ -186,12 +186,12 @@ class Pipeline: # Handle reasoning content (Chain of Thought) if "reasoningContent" in delta and "text" in delta["reasoningContent"]: if not thinking_block: - thinking_block = delta["reasoningContent"]["contentBlockIndex"] + thinking_block = delta["contentBlockIndex"] yield '\n' #print(f"Reasoning content: {delta['reasoningContent']}") yield delta["reasoningContent"]["text"] - if "contentBlockStop" in delta and delta["contentBlockDelta"]["contentBlockIndex"] == thinking_block: + if "contentBlockStop" in delta and delta["contentBlockStop"]["contentBlockIndex"] == thinking_block: yield '\n\n' # Handle regular response text