open-agents-ai 0.187.462 → 0.187.463
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 +16 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -595283,7 +595283,22 @@ ${result.content.slice(0, 2e3)}${result.content.length > 2e3 ? "\n[truncated]" :
|
|
|
595283
595283
|
const input = line.trim();
|
|
595284
595284
|
if (!input) {
|
|
595285
595285
|
if (pasteBuffer.length > 0) {
|
|
595286
|
-
|
|
595286
|
+
if (pasteIndicatorShown) {
|
|
595287
|
+
flushPasteBuffer();
|
|
595288
|
+
return;
|
|
595289
|
+
}
|
|
595290
|
+
pasteBuffer.push("");
|
|
595291
|
+
if (pasteTimer) clearTimeout(pasteTimer);
|
|
595292
|
+
pasteTimer = setTimeout(() => {
|
|
595293
|
+
pasteTimer = null;
|
|
595294
|
+
if (pasteBuffer.length === 1) {
|
|
595295
|
+
const solo = pasteBuffer.shift();
|
|
595296
|
+
pasteIndicatorShown = false;
|
|
595297
|
+
processLine(solo);
|
|
595298
|
+
} else {
|
|
595299
|
+
showPasteIndicator();
|
|
595300
|
+
}
|
|
595301
|
+
}, 50);
|
|
595287
595302
|
return;
|
|
595288
595303
|
}
|
|
595289
595304
|
showPrompt();
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.187.
|
|
3
|
+
"version": "0.187.463",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "open-agents-ai",
|
|
9
|
-
"version": "0.187.
|
|
9
|
+
"version": "0.187.463",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "CC-BY-NC-4.0",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED