open-agents-ai 0.127.0 → 0.129.0
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 +9 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8782,14 +8782,16 @@ New: ${newNarrative.slice(0, 200)}...`,
|
|
|
8782
8782
|
entity: "primary-user",
|
|
8783
8783
|
trust_level: 0.9,
|
|
8784
8784
|
interaction_history_summary: "New relationship \u2014 first session.",
|
|
8785
|
-
preferences_learned: []
|
|
8785
|
+
preferences_learned: [],
|
|
8786
|
+
their_model_of_us: "New relationship \u2014 user likely expects a capable coding assistant."
|
|
8786
8787
|
}],
|
|
8787
8788
|
homeostasis: {
|
|
8788
8789
|
uncertainty: 0.1,
|
|
8789
8790
|
coherence: 1,
|
|
8790
8791
|
goal_tension: 0,
|
|
8791
8792
|
memory_trust: 1,
|
|
8792
|
-
boundary_breach: 0
|
|
8793
|
+
boundary_breach: 0,
|
|
8794
|
+
latency_stress: 0
|
|
8793
8795
|
},
|
|
8794
8796
|
created_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
8795
8797
|
updated_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
@@ -41461,6 +41463,7 @@ async function handleExposeConfig(ctx) {
|
|
|
41461
41463
|
}
|
|
41462
41464
|
async function showModelPicker(ctx, local = false) {
|
|
41463
41465
|
try {
|
|
41466
|
+
renderInfo("Loading models...");
|
|
41464
41467
|
const models = await fetchModels(ctx.config.backendUrl, ctx.config.apiKey);
|
|
41465
41468
|
if (models.length === 0) {
|
|
41466
41469
|
renderWarning("No models found.");
|
|
@@ -42383,6 +42386,7 @@ async function handleUpdate(subcommand, ctx) {
|
|
|
42383
42386
|
}
|
|
42384
42387
|
};
|
|
42385
42388
|
}
|
|
42389
|
+
renderInfo("Checking for updates...");
|
|
42386
42390
|
const info = await checkForUpdate(currentVersion, true);
|
|
42387
42391
|
const { exec: exec4, execSync: es2 } = await import("node:child_process");
|
|
42388
42392
|
const execA = (cmd, opts) => new Promise((res, rej) => exec4(cmd, { encoding: "utf8", timeout: opts?.timeout ?? 3e4, cwd: opts?.cwd }, (err, stdout) => err ? rej(err) : res((stdout || "").trim())));
|
|
@@ -44306,21 +44310,14 @@ var init_banner = __esm({
|
|
|
44306
44310
|
return this.currentDesign;
|
|
44307
44311
|
}
|
|
44308
44312
|
/**
|
|
44309
|
-
* Start rendering the banner.
|
|
44310
|
-
*
|
|
44311
|
-
*
|
|
44313
|
+
* Start rendering the banner into the top 3 rows.
|
|
44314
|
+
* Does NOT set DECSTBM scroll region — that's managed by StatusBar.activate()
|
|
44315
|
+
* which accounts for both the banner height AND the footer height.
|
|
44312
44316
|
* Returns the number of rows reserved (3 banner + 1 separator = 4).
|
|
44313
44317
|
*/
|
|
44314
44318
|
start() {
|
|
44315
44319
|
if (!isTTY7 || !this.currentDesign)
|
|
44316
44320
|
return 0;
|
|
44317
|
-
const termRows = process.stdout.rows ?? 24;
|
|
44318
|
-
process.stdout.write("\x1B[1;1H");
|
|
44319
|
-
for (let i = 0; i < this.rows + 1; i++) {
|
|
44320
|
-
process.stdout.write("\x1B[2K\n");
|
|
44321
|
-
}
|
|
44322
|
-
process.stdout.write(`\x1B[${this.rows + 2};${termRows}r`);
|
|
44323
|
-
process.stdout.write(`\x1B[${this.rows + 2};1H`);
|
|
44324
44321
|
this.renderCurrentFrame();
|
|
44325
44322
|
this._resizeHandler = () => {
|
|
44326
44323
|
this.width = process.stdout.columns ?? 80;
|
package/package.json
CHANGED