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.
- package/dist/index.js +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(
|
|
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(
|
|
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