open-agents-ai 0.141.1 → 0.141.3
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 +13 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -57912,22 +57912,22 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
57912
57912
|
headerBtnActive = command;
|
|
57913
57913
|
(async () => {
|
|
57914
57914
|
try {
|
|
57915
|
-
const
|
|
57916
|
-
if (
|
|
57917
|
-
|
|
57918
|
-
|
|
57919
|
-
|
|
57920
|
-
|
|
57921
|
-
|
|
57922
|
-
|
|
57923
|
-
if (statusBar.isActive)
|
|
57924
|
-
statusBar.endContentWrite();
|
|
57925
|
-
} catch {
|
|
57915
|
+
const isOverlayCmd = command === "/model" || command === "/voice";
|
|
57916
|
+
if (isOverlayCmd) {
|
|
57917
|
+
await handleSlashCommand(command, commandCtxRef);
|
|
57918
|
+
} else {
|
|
57919
|
+
writeContent(() => {
|
|
57920
|
+
handleSlashCommand(command, commandCtxRef).catch(() => {
|
|
57921
|
+
});
|
|
57922
|
+
});
|
|
57926
57923
|
}
|
|
57924
|
+
} catch {
|
|
57927
57925
|
}
|
|
57928
57926
|
headerBtnActive = null;
|
|
57929
|
-
if (statusBar.isActive)
|
|
57930
|
-
|
|
57927
|
+
if (statusBar.isActive) {
|
|
57928
|
+
banner.renderCurrentFrame();
|
|
57929
|
+
statusBar.refreshDisplay();
|
|
57930
|
+
}
|
|
57931
57931
|
})();
|
|
57932
57932
|
});
|
|
57933
57933
|
rl.output = null;
|
package/package.json
CHANGED