pi-reason-harness 1.0.1 → 1.0.2
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/harness/cli.ts +0 -0
- package/harness/server.ts +6 -4
- package/package.json +8 -8
package/harness/cli.ts
CHANGED
|
File without changes
|
package/harness/server.ts
CHANGED
|
@@ -36,10 +36,12 @@ import {
|
|
|
36
36
|
getModel,
|
|
37
37
|
getEnvApiKey,
|
|
38
38
|
completeSimple,
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
} from '@earendil-works/pi-ai/compat';
|
|
40
|
+
import type {
|
|
41
|
+
Model,
|
|
42
|
+
Context,
|
|
43
|
+
UserMessage,
|
|
44
|
+
SimpleStreamOptions,
|
|
43
45
|
} from '@earendil-works/pi-ai';
|
|
44
46
|
|
|
45
47
|
interface CustomProviderConfig {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-reason-harness",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Recursive self-improving reasoning harness for pi
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Recursive self-improving reasoning harness for pi — iterate, verify, improve. Builds task-specific reasoning strategies on top of any LLM.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
7
7
|
],
|
|
@@ -25,11 +25,6 @@
|
|
|
25
25
|
"./skills"
|
|
26
26
|
]
|
|
27
27
|
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"test": "vitest run",
|
|
30
|
-
"test:watch": "vitest",
|
|
31
|
-
"typecheck": "tsc --noEmit"
|
|
32
|
-
},
|
|
33
28
|
"devDependencies": {
|
|
34
29
|
"@types/node": "25.9.1",
|
|
35
30
|
"typescript": "6.0.3",
|
|
@@ -46,5 +41,10 @@
|
|
|
46
41
|
"fast-xml-builder": "1.2.0",
|
|
47
42
|
"protobufjs": "8.4.0",
|
|
48
43
|
"ws": "8.20.1"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"test:watch": "vitest",
|
|
48
|
+
"typecheck": "tsc --noEmit"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|