@pasko70/pibo 3.6.3 → 3.6.4

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.
@@ -7,11 +7,21 @@ const COMPAT = {
7
7
  supportsStore: false,
8
8
  maxTokensField: "max_tokens",
9
9
  };
10
+ const REASONING_LEVELS = {
11
+ off: null,
12
+ minimal: "minimal",
13
+ low: "low",
14
+ medium: "medium",
15
+ high: "high",
16
+ xhigh: "xhigh",
17
+ max: "max",
18
+ };
10
19
  export const META_MUSE_MODELS = [
11
20
  {
12
21
  id: "muse-spark-1.3",
13
22
  name: "Muse Spark 1.3",
14
23
  reasoning: true,
24
+ thinkingLevelMap: REASONING_LEVELS,
15
25
  compat: COMPAT,
16
26
  contextWindow: 1_000_000,
17
27
  maxTokens: 131_072,
@@ -22,6 +32,7 @@ export const META_MUSE_MODELS = [
22
32
  id: "muse-spark-1.3-contributor",
23
33
  name: "Muse Spark 1.3 Contributor",
24
34
  reasoning: true,
35
+ thinkingLevelMap: { ...REASONING_LEVELS, max: null },
25
36
  compat: COMPAT,
26
37
  contextWindow: 1_000_000,
27
38
  maxTokens: 131_072,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@pasko70/pibo",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@pasko70/pibo",
9
- "version": "3.6.3",
9
+ "version": "3.6.4",
10
10
  "workspaces": [
11
11
  "packages/workflows"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pasko70/pibo",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",