open-agents-ai 0.187.295 → 0.187.296
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 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -330855,9 +330855,10 @@ ${entry.fullContent}`
|
|
|
330855
330855
|
case "debug_littleman":
|
|
330856
330856
|
if (event.littlemanAction) {
|
|
330857
330857
|
const lm = event.littlemanAction;
|
|
330858
|
-
|
|
330859
|
-
|
|
330860
|
-
|
|
330858
|
+
if (lm.intervention) {
|
|
330859
|
+
const simple = `⚠ ${lm.intervention}`;
|
|
330860
|
+
contentWrite(() => renderInfo2(simple));
|
|
330861
|
+
}
|
|
330861
330862
|
if (lm.details) {
|
|
330862
330863
|
littlemanBuffer.push(lm.details);
|
|
330863
330864
|
if (littlemanBuffer.length > 50) littlemanBuffer.splice(0, littlemanBuffer.length - 50);
|
package/package.json
CHANGED