open-agents-ai 0.104.30 → 0.104.31
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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47983,7 +47983,7 @@ var init_status_bar = __esm({
|
|
|
47983
47983
|
}
|
|
47984
47984
|
};
|
|
47985
47985
|
poll();
|
|
47986
|
-
this._remoteMetricsTimer = setInterval(poll,
|
|
47986
|
+
this._remoteMetricsTimer = setInterval(poll, 5e3);
|
|
47987
47987
|
}
|
|
47988
47988
|
/**
|
|
47989
47989
|
* Start polling a peer endpoint for metrics via nexus daemon.
|
|
@@ -48099,13 +48099,13 @@ var init_status_bar = __esm({
|
|
|
48099
48099
|
cpuUtil: -1,
|
|
48100
48100
|
// -1 = unavailable (won't render bar)
|
|
48101
48101
|
gpuUtil: -1,
|
|
48102
|
-
gpuName: pollAttempt <=
|
|
48102
|
+
gpuName: pollAttempt <= 5 ? "connecting..." : `peer (${lastPeerMetricsDebug.slice(0, 40)})`,
|
|
48103
48103
|
vramUtil: -1,
|
|
48104
48104
|
memUtil: -1
|
|
48105
48105
|
});
|
|
48106
48106
|
};
|
|
48107
|
-
setTimeout(poll,
|
|
48108
|
-
this._remoteMetricsTimer = setInterval(poll,
|
|
48107
|
+
setTimeout(poll, 1e3);
|
|
48108
|
+
this._remoteMetricsTimer = setInterval(poll, 5e3);
|
|
48109
48109
|
}
|
|
48110
48110
|
/** Stop polling remote metrics and switch back to local */
|
|
48111
48111
|
stopRemoteMetricsPolling() {
|
package/package.json
CHANGED