omnius 1.0.440 → 1.0.441

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 CHANGED
@@ -700357,7 +700357,9 @@ Rules:
700357
700357
  };
700358
700358
  this._onError = (err) => {
700359
700359
  const msg = err instanceof Error ? err.message : String(err);
700360
- this.onStatus(`ASR error (voicechat continues without mic): ${msg.slice(0, 80)}`);
700360
+ if (this.verbose) {
700361
+ this.onStatus(`ASR error (voicechat continues without mic): ${msg.slice(0, 80)}`);
700362
+ }
700361
700363
  if (this.active && !this._retryMicTimer) {
700362
700364
  this._retryMicTimer = setTimeout(async () => {
700363
700365
  this._retryMicTimer = null;
@@ -739976,11 +739978,6 @@ Respond concisely and safely. Remember: you are talking to the general public.`;
739976
739978
  listenEng.on("level", (evt) => {
739977
739979
  statusBar.setMicActivity(evt.speechActive, evt.levelDb);
739978
739980
  });
739979
- listenEng.on("info", (msg) => {
739980
- if (/consensus rejected|loading whisper|whisper model loaded/i.test(msg)) {
739981
- writeContent(() => renderInfo(`[voicechat/asr] ${msg}`));
739982
- }
739983
- });
739984
739981
  }
739985
739982
  const summaryRunner = {
739986
739983
  injectUserMessage(content) {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.440",
3
+ "version": "1.0.441",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.440",
9
+ "version": "1.0.441",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.440",
3
+ "version": "1.0.441",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",