open-agents-ai 0.103.3 → 0.103.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -31456,6 +31456,7 @@ async function handleUpdate(subcommand, ctx) {
31456
31456
  ctx.contextSave?.();
31457
31457
  const hadActiveTask = ctx.savePendingTaskState?.() ?? false;
31458
31458
  const resumeFlag = hadActiveTask ? "1" : "update-only";
31459
+ reloadSpinner.stop("Reloading\u2026");
31459
31460
  const { execPath, argv } = process;
31460
31461
  try {
31461
31462
  const { execFileSync } = await import("node:child_process");
@@ -42053,6 +42054,7 @@ async function startInteractive(config, repoPath) {
42053
42054
  let carouselLines = 0;
42054
42055
  const version = getVersion3();
42055
42056
  if (isResumed) {
42057
+ process.stdout.write("\r\x1B[K");
42056
42058
  const resumeMsg = hasTaskToResume ? `Updated to v${version} \u2014 picking up where you left off.
42057
42059
  ` : `Updated to v${version}.
42058
42060
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.103.3",
3
+ "version": "0.103.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",