open-agents-ai 0.71.3 → 0.71.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.
- package/dist/index.js +7 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11526,6 +11526,13 @@ var init_nexus = __esm({
|
|
|
11526
11526
|
x402: walletAddress ? { enabled: true, walletAddress, allowedCurrencies: ["USDC"], allowedNetworks: ["base"] } : { enabled: false }
|
|
11527
11527
|
});
|
|
11528
11528
|
await client.connect();
|
|
11529
|
+
try {
|
|
11530
|
+
const node = client.network?.node;
|
|
11531
|
+
if (node && typeof node.start === "function" && !node.isStarted?.()) {
|
|
11532
|
+
await node.start();
|
|
11533
|
+
}
|
|
11534
|
+
} catch {
|
|
11535
|
+
}
|
|
11529
11536
|
clientInstance = client;
|
|
11530
11537
|
connectionPeerId = client.peerId;
|
|
11531
11538
|
await writeFile12(join28(this.nexusDir, "connection.json"), JSON.stringify({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.4",
|
|
4
4
|
"description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -68,6 +68,6 @@
|
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
70
|
"moondream": "^0.2.0",
|
|
71
|
-
"open-agents-nexus": "^0.
|
|
71
|
+
"open-agents-nexus": "^0.3.0"
|
|
72
72
|
}
|
|
73
73
|
}
|