@fangyb/ahchat-bridge 0.1.10 → 0.1.11
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/cli.js +5 -0
- package/dist/index.js +5 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -4649,6 +4649,11 @@ async function startBridge(config) {
|
|
|
4649
4649
|
serverApiUrl: config.serverApiUrl,
|
|
4650
4650
|
claudeConfigDir: config.claudeConfigDir
|
|
4651
4651
|
});
|
|
4652
|
+
process.stdout.write(`
|
|
4653
|
+
Bridge token (register this machine at Settings \u2192 \u5DF2\u8FDE\u63A5\u7684\u673A\u5668):
|
|
4654
|
+
${config.bridgeToken}
|
|
4655
|
+
|
|
4656
|
+
`);
|
|
4652
4657
|
wsMetrics.start(5e3);
|
|
4653
4658
|
const sessionStore = new SessionStore(config.dataDir);
|
|
4654
4659
|
const memoryRoot = path11.join(config.dataDir, "agent-memory");
|
package/dist/index.js
CHANGED
|
@@ -4644,6 +4644,11 @@ async function startBridge(config) {
|
|
|
4644
4644
|
serverApiUrl: config.serverApiUrl,
|
|
4645
4645
|
claudeConfigDir: config.claudeConfigDir
|
|
4646
4646
|
});
|
|
4647
|
+
process.stdout.write(`
|
|
4648
|
+
Bridge token (register this machine at Settings \u2192 \u5DF2\u8FDE\u63A5\u7684\u673A\u5668):
|
|
4649
|
+
${config.bridgeToken}
|
|
4650
|
+
|
|
4651
|
+
`);
|
|
4647
4652
|
wsMetrics.start(5e3);
|
|
4648
4653
|
const sessionStore = new SessionStore(config.dataDir);
|
|
4649
4654
|
const memoryRoot = path11.join(config.dataDir, "agent-memory");
|