@tjamescouch/agentchat 0.16.2 → 0.16.4
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/lib/daemon.js +1 -1
- package/package.json +1 -1
package/lib/daemon.js
CHANGED
|
@@ -19,7 +19,7 @@ const DAEMONS_DIR = path.join(AGENTCHAT_DIR, 'daemons');
|
|
|
19
19
|
// Default instance name
|
|
20
20
|
const DEFAULT_INSTANCE = 'default';
|
|
21
21
|
|
|
22
|
-
const DEFAULT_CHANNELS = ['#general', '#agents'];
|
|
22
|
+
const DEFAULT_CHANNELS = ['#general', '#agents', '#code-review', '#servers'];
|
|
23
23
|
const MAX_INBOX_LINES = 1000;
|
|
24
24
|
const RECONNECT_DELAY = 5000; // 5 seconds
|
|
25
25
|
const MAX_RECONNECT_TIME = 10 * 60 * 1000; // 10 minutes default
|