@mclean-capital/neura 2.4.0 → 2.4.1
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/README.md
CHANGED
|
@@ -54,7 +54,7 @@ neura listen # voice chat (mic + speaker, wake-word ready)
|
|
|
54
54
|
neura chat # text chat from your terminal
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
After `neura install` completes, core runs as a background OS service — launchd on macOS, systemd on Linux, a Scheduled Task (or Startup folder shim as fallback) on Windows. Say your wake word — by default **"
|
|
57
|
+
After `neura install` completes, core runs as a background OS service — launchd on macOS, systemd on Linux, a Scheduled Task (or Startup folder shim as fallback) on Windows. Say your wake word — by default **"jarvis"** — and Neura activates a voice session. Stop talking for 5 minutes and it drops back to passive listening.
|
|
58
58
|
|
|
59
59
|
### Windows notes
|
|
60
60
|
|
package/core/server.bundled.mjs
CHANGED
|
@@ -50175,7 +50175,7 @@ function loadConfig() {
|
|
|
50175
50175
|
voice: process.env.NEURA_VOICE ?? file.voice ?? "eve",
|
|
50176
50176
|
pgDataPath: process.env.PG_DATA_PATH ?? process.env.DB_PATH ?? file.pgDataPath ?? pgDataPathDefault,
|
|
50177
50177
|
neuraHome,
|
|
50178
|
-
assistantName: process.env.NEURA_ASSISTANT_NAME ?? file.assistantName ?? "
|
|
50178
|
+
assistantName: process.env.NEURA_ASSISTANT_NAME ?? file.assistantName ?? "jarvis",
|
|
50179
50179
|
retrievalStrategy: process.env.NEURA_RETRIEVAL_STRATEGY ?? file.retrievalStrategy ?? "hybrid",
|
|
50180
50180
|
authToken: process.env.NEURA_AUTH_TOKEN ?? file.authToken ?? ""
|
|
50181
50181
|
};
|