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 +1 -1
- package/package.json +1 -1
- package/src/config/model.ts +1 -1
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
package/src/config/model.ts
CHANGED
|
@@ -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),
|