open-agents-ai 0.187.435 → 0.187.436

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 CHANGED
@@ -540233,15 +540233,15 @@ function showDropPanel(opts) {
540233
540233
  const topPad = Math.max(0, Math.floor(availableForPadding / 2));
540234
540234
  const bottomPad = Math.max(0, availableForPadding - topPad);
540235
540235
  const lines = [];
540236
- const borderH = "┈".repeat(Math.max(2, cols - 4));
540236
+ const borderH = "┈".repeat(Math.max(2, cols - 6));
540237
540237
  const emptyPipe = ` ${bc("┊")}${" ".repeat(innerSpace)}${bc("┊")}`;
540238
- lines.push(` ${bc(borderH)}`);
540238
+ lines.push(` ${bc("╭")}${borderH}${bc("╮")}`);
540239
540239
  for (let i2 = 0; i2 < topPad; i2++) lines.push(emptyPipe);
540240
540240
  for (const line of content) {
540241
540241
  lines.push(` ${bc("┊")}${line}${bc("┊")}`);
540242
540242
  }
540243
540243
  for (let i2 = 0; i2 < bottomPad; i2++) lines.push(emptyPipe);
540244
- lines.push(` ${bc(borderH)}`);
540244
+ lines.push(` ${bc("╰")}${borderH}${bc("╯")}`);
540245
540245
  lines.push(` ${dc.dim("Enter confirm Esc cancel")}`);
540246
540246
  overlayWrite(lines.join("\n") + "\n");
540247
540247
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.435",
3
+ "version": "0.187.436",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.435",
9
+ "version": "0.187.436",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.435",
3
+ "version": "0.187.436",
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",