pi-spark 0.17.1 → 0.18.0

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.
package/README.md CHANGED
@@ -166,7 +166,7 @@ All fields are optional. If the title model configuration is incomplete, pi-spar
166
166
 
167
167
  #### `ModelThinkingLevel`
168
168
 
169
- Valid values: `off`, `minimal`, `low`, `medium`, `high`, `xhigh`.
169
+ Valid values: `off`, `minimal`, `low`, `medium`, `high`, `xhigh`, `max`.
170
170
 
171
171
  ### Turn off the features you don't like
172
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-spark",
3
- "version": "0.17.1",
3
+ "version": "0.18.0",
4
4
  "description": "Pi package that polishes your daily experience.",
5
5
  "keywords": [
6
6
  "pi-coding-agent",
@@ -2,7 +2,7 @@ import * as z from "zod";
2
2
 
3
3
  import type { ModelThinkingLevel } from "@earendil-works/pi-ai";
4
4
 
5
- const THINKING_LEVELS = ["off", "minimal", "low", "medium", "high", "xhigh"] as const satisfies readonly ModelThinkingLevel[];
5
+ const THINKING_LEVELS = ["off", "minimal", "low", "medium", "high", "xhigh", "max"] as const satisfies readonly ModelThinkingLevel[];
6
6
 
7
7
  export const modelSchema = z.object({
8
8
  provider: z.string().min(1),