open-agents-ai 0.138.35 → 0.138.36
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 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -54060,13 +54060,10 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
54060
54060
|
process.stdout.write(chunk);
|
|
54061
54061
|
return;
|
|
54062
54062
|
}
|
|
54063
|
-
|
|
54064
|
-
|
|
54065
|
-
|
|
54066
|
-
|
|
54067
|
-
writer(`\x1B7\x1B[${inputRow};1H`);
|
|
54068
|
-
writer(chunk);
|
|
54069
|
-
writer(`\x1B8`);
|
|
54063
|
+
if (statusBar.isStreaming) {
|
|
54064
|
+
return;
|
|
54065
|
+
}
|
|
54066
|
+
process.stdout.write(chunk);
|
|
54070
54067
|
});
|
|
54071
54068
|
const rl = readline2.createInterface({
|
|
54072
54069
|
input: mouseFilter,
|
package/package.json
CHANGED