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