mentedb 0.10.0 → 0.10.5
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
|
@@ -30,6 +30,8 @@ const result = await db.processTurn(
|
|
|
30
30
|
"I prefer using TypeScript for backend services",
|
|
31
31
|
"Noted! TypeScript is great for type-safe backends.",
|
|
32
32
|
0 // turn_id
|
|
33
|
+
// optional: projectContext, agentId, sessionId (tags stored turns so
|
|
34
|
+
// injection recall can exclude the requesting session)
|
|
33
35
|
);
|
|
34
36
|
|
|
35
37
|
console.log(result.context); // relevant memories
|
|
Binary file
|
package/mentedb.darwin-x64.node
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/npm/client.js
CHANGED
|
@@ -39,6 +39,7 @@ const os = __importStar(require("os"));
|
|
|
39
39
|
const path = __importStar(require("path"));
|
|
40
40
|
const PLATFORM_TRIPLES = {
|
|
41
41
|
'linux-x64': 'linux-x64-gnu',
|
|
42
|
+
'linux-arm64': 'linux-arm64-gnu',
|
|
42
43
|
'darwin-arm64': 'darwin-arm64',
|
|
43
44
|
'darwin-x64': 'darwin-x64',
|
|
44
45
|
'win32-x64': 'win32-x64-msvc',
|