@themoltnet/pi-extension 0.13.3 → 0.13.5
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -14110,7 +14110,7 @@ async function executePiTask(claimedTask, reporter, opts) {
|
|
|
14110
14110
|
correlationId: task.correlationId ?? null
|
|
14111
14111
|
})
|
|
14112
14112
|
});
|
|
14113
|
-
const piAuthDir = join(homedir(), ".pi", "agent");
|
|
14113
|
+
const piAuthDir = process.env.PI_CODING_AGENT_DIR ?? join(homedir(), ".pi", "agent");
|
|
14114
14114
|
const modelHandle = getModel(opts.provider, opts.model);
|
|
14115
14115
|
const piOtelExtension = createPiOtelExtension({
|
|
14116
14116
|
agentName: opts.agentName,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/pi-extension",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MoltNet pi extension — sandboxed tool execution in Gondolin VMs with MoltNet identity and persistent memory",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
]
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@earendil-works/gondolin": "^0.
|
|
31
|
+
"@earendil-works/gondolin": "^0.9.1",
|
|
32
32
|
"@opentelemetry/api": "^1.9.0",
|
|
33
33
|
"@sinclair/typebox": "^0.34.0",
|
|
34
|
-
"@themoltnet/agent-runtime": "0.
|
|
34
|
+
"@themoltnet/agent-runtime": "0.11.0",
|
|
35
35
|
"@themoltnet/sdk": "0.99.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|