@mzhub/cortex 0.1.0 → 0.1.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/dist/index.mjs CHANGED
@@ -644,7 +644,7 @@ Analyze the conversation and extract facts that should be remembered long-term.
644
644
  - Job: "I work at Google as an engineer" \u2192 (User, WORKS_AT, Google), (User, JOB_TITLE, Engineer)
645
645
  - Relationships: "My wife Sarah" \u2192 (User, SPOUSE, Sarah)
646
646
  - Tech preferences: "I use React and TypeScript" \u2192 (User, USES_TECH, React), (User, USES_TECH, TypeScript)
647
- - Projects: "Working on a memory system called mem-ts" \u2192 (User, WORKING_ON, mem-ts)
647
+ - Projects: "Working on a memory system called cortex" \u2192 (User, WORKING_ON, cortex)
648
648
  - Important dates: "My birthday is March 15" \u2192 (User, BIRTHDAY, March 15)
649
649
 
650
650
  ## What to IGNORE:
@@ -1660,7 +1660,7 @@ var JSONFileAdapter = class extends BaseAdapter {
1660
1660
  prettyPrint;
1661
1661
  constructor(config = {}) {
1662
1662
  super();
1663
- this.basePath = config.path || "./.mem-ts";
1663
+ this.basePath = config.path || "./.cortex";
1664
1664
  this.prettyPrint = config.prettyPrint ?? process.env.NODE_ENV !== "production";
1665
1665
  }
1666
1666
  async initialize() {