open-agents-ai 0.185.44 → 0.185.45

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -49835,7 +49835,7 @@ async function handleSlashCommand(input, ctx) {
49835
49835
  if (url) {
49836
49836
  renderInfo(`PersonaPlex ready at ${url} \u2014 use /call for full-duplex voice`);
49837
49837
  } else {
49838
- renderError("PersonaPlex daemon failed to start. Check ~/.open-agents/voice/personaplex/daemon.log");
49838
+ renderError(`PersonaPlex daemon failed to start. Check ${__require("path").join(__require("os").homedir(), ".open-agents", "voice", "personaplex", "daemon.log")}`);
49839
49839
  }
49840
49840
  }
49841
49841
  } catch (e) {
@@ -49852,7 +49852,7 @@ async function handleSlashCommand(input, ctx) {
49852
49852
  if (url) {
49853
49853
  renderInfo(`PersonaPlex ready at ${url} \u2014 use /call for full-duplex voice`);
49854
49854
  } else {
49855
- renderError("PersonaPlex daemon failed to start. Check daemon.log");
49855
+ renderError(`PersonaPlex daemon failed to start. Check ${__require("path").join(__require("os").homedir(), ".open-agents", "voice", "personaplex", "daemon.log")}`);
49856
49856
  }
49857
49857
  }).catch(() => {
49858
49858
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.185.44",
3
+ "version": "0.185.45",
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",