open-agents-ai 0.30.8 → 0.30.9
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 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13742,7 +13742,7 @@ function renderSlashHelp() {
|
|
|
13742
13742
|
["/dream stop", "Wake up \u2014 stop dreaming"],
|
|
13743
13743
|
["/listen", "Toggle live microphone transcription (Whisper)"],
|
|
13744
13744
|
["/listen <model>", "Set model: tiny, base, small, medium, large"],
|
|
13745
|
-
["/listen
|
|
13745
|
+
["/listen manual", "Manual mode \u2014 press Enter to submit (turns off auto)"],
|
|
13746
13746
|
["/listen auto", "Auto-submit after 3s silence (blinking \u25CF indicator)"],
|
|
13747
13747
|
["/listen stop", "Stop listening"],
|
|
13748
13748
|
["/cost", "Show session token cost breakdown"],
|
|
@@ -16115,8 +16115,8 @@ async function handleSlashCommand(input, ctx) {
|
|
|
16115
16115
|
renderInfo(msg2);
|
|
16116
16116
|
return "handled";
|
|
16117
16117
|
}
|
|
16118
|
-
if (arg === "confirm") {
|
|
16119
|
-
const msg2 = ctx.listenSetMode?.("confirm") ?? "
|
|
16118
|
+
if (arg === "confirm" || arg === "manual") {
|
|
16119
|
+
const msg2 = ctx.listenSetMode?.("confirm") ?? "Manual mode set.";
|
|
16120
16120
|
renderInfo(msg2);
|
|
16121
16121
|
return "handled";
|
|
16122
16122
|
}
|
|
@@ -21437,7 +21437,7 @@ async function startInteractive(config, repoPath) {
|
|
|
21437
21437
|
listenSetMode(mode) {
|
|
21438
21438
|
const engine = getListenEngine();
|
|
21439
21439
|
engine.setMode(mode);
|
|
21440
|
-
return mode === "auto" ? "Auto mode: transcriptions auto-submit after 3s silence" : "
|
|
21440
|
+
return mode === "auto" ? "Auto mode: transcriptions auto-submit after 3s silence" : "Manual mode: press Enter to submit transcriptions (auto-submit off)";
|
|
21441
21441
|
},
|
|
21442
21442
|
async listenStop() {
|
|
21443
21443
|
const engine = getListenEngine();
|
package/package.json
CHANGED