You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/src/providers/anthropic.rs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -930,6 +930,9 @@ impl AnthropicLLM {
930
930
"type": thinking_type,
931
931
"budget_tokens": thinking_budget_tokens,
932
932
});
933
+
// We can't pass a temperature different than 1.0 in thinking mode: https://docs.anthropic.com/en/docs/build-with-claude/extended-thinking#important-considerations-when-using-extended-thinking
934
+
// TODO(2025-03-18 aubin): we should surface this sooner
0 commit comments