open-agents-ai 0.186.36 → 0.186.37
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5699,8 +5699,8 @@ async function handleCmd(cmd) {
|
|
|
5699
5699
|
} catch {}
|
|
5700
5700
|
var sponsorData = {
|
|
5701
5701
|
type: 'sponsor.announce',
|
|
5702
|
-
peerId:
|
|
5703
|
-
libp2pPeerId:
|
|
5702
|
+
peerId: (connected ? nexus.peerId : 'unknown') || 'unknown',
|
|
5703
|
+
libp2pPeerId: (connected ? nexus.peerId : '') || '',
|
|
5704
5704
|
name: args.name || 'Anonymous Sponsor',
|
|
5705
5705
|
models: _saModels.length > 0 ? _saModels : _saModelDetails.map(function(m) { return m.name; }),
|
|
5706
5706
|
modelDetails: _saModelDetails, // NX-07: per-model capacity
|
package/package.json
CHANGED