@rimori/client 2.5.52 → 2.5.53

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.
@@ -76,6 +76,13 @@ export interface PromptDefinition {
76
76
  schema?: Record<string, any>;
77
77
  tools?: any[];
78
78
  model?: string;
79
+ /**
80
+ * Explicit override for "thinking" mode on hybrid-reasoning models served via SiliconFlow or
81
+ * parasail (e.g. DeepSeek V4 Flash). Unset leaves the backend's per-model default in place;
82
+ * `false` is how a streaming, user-facing prompt opts out of the multi-second reasoning delay
83
+ * that thinking mode adds. Ignored for models that don't support the toggle.
84
+ */
85
+ thinking?: boolean;
79
86
  /** Minimum subscription tier allowed to invoke this prompt. Defaults to 'free' when unset. */
80
87
  minTier?: SubscriptionTier;
81
88
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimori/client",
3
- "version": "2.5.52",
3
+ "version": "2.5.53",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": {