praxis-agent 0.62.2 → 0.62.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -750,6 +750,7 @@ export class AnthropicCompatibleProvider {
750
750
  body: JSON.stringify({
751
751
  model: this.wireModel,
752
752
  max_tokens: maxTokens,
753
+ ...(thinking?.mode === 'disabled' ? { temperature: 1 } : {}),
753
754
  messages: serialized.messages,
754
755
  stream: this.streaming,
755
756
  ...(thinkingPayload ? { thinking: thinkingPayload } : {}),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "praxis-agent",
3
- "version": "0.62.2",
3
+ "version": "0.62.3",
4
4
  "description": "Local-first, single-user general agent for the command line.",
5
5
  "license": "MIT",
6
6
  "author": "wuqisen",