mr-memory 2.11.1 → 2.11.2
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/index.ts +3 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -231,6 +231,7 @@ const memoryRouterPlugin = {
|
|
|
231
231
|
api.logger.info?.(`memoryrouter: active (key: ${memoryKey.slice(0, 6)}..., mode: ${mode})`);
|
|
232
232
|
} else {
|
|
233
233
|
api.logger.info?.("memoryrouter: no key configured — run: openclaw mr <key>");
|
|
234
|
+
api.logger.info?.("memoryrouter: get your free API key at https://memoryrouter.ai");
|
|
234
235
|
}
|
|
235
236
|
|
|
236
237
|
// ==================================================================
|
|
@@ -699,7 +700,8 @@ const memoryRouterPlugin = {
|
|
|
699
700
|
console.log("MemoryRouter Status");
|
|
700
701
|
console.log("───────────────────────────");
|
|
701
702
|
console.log(`Enabled: ✗ No (no key configured)`);
|
|
702
|
-
console.log(`\
|
|
703
|
+
console.log(`\nGet your free API key: https://memoryrouter.ai`);
|
|
704
|
+
console.log(`Then run: openclaw mr <key>`);
|
|
703
705
|
}
|
|
704
706
|
return;
|
|
705
707
|
}
|