@livx.cc/agentx 0.95.5 → 0.95.6

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/cli.js CHANGED
@@ -11106,12 +11106,12 @@ async function repl(args, ai, cfg, cwd) {
11106
11106
  const voiceEcho = (text) => {
11107
11107
  const s = forSpeech(text);
11108
11108
  if (!s) return;
11109
- process.stdout.write(s);
11109
+ err(s);
11110
11110
  voiceLineOpen = true;
11111
11111
  };
11112
11112
  const voiceEchoEnd = () => {
11113
11113
  if (voiceLineOpen) {
11114
- process.stdout.write("\n");
11114
+ err("\n");
11115
11115
  voiceLineOpen = false;
11116
11116
  }
11117
11117
  };