@mem7ai/mem7 0.0.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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +1 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # mem7
2
+
3
+ LLM-powered long-term memory engine — Rust core with multi-language bindings.
4
+
5
+ > **This package is under active development.** The npm release is coming soon.
6
+
7
+ See [github.com/mem7ai/mem7](https://github.com/mem7ai/mem7) for progress and documentation.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ throw new Error("mem7 is not yet available for Node.js. See https://github.com/mem7ai/mem7 for updates.");
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@mem7ai/mem7",
3
+ "version": "0.0.1",
4
+ "description": "LLM-powered long-term memory engine — Rust core with multi-language bindings",
5
+ "main": "index.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/mem7ai/mem7.git"
9
+ },
10
+ "homepage": "https://github.com/mem7ai/mem7",
11
+ "license": "Apache-2.0",
12
+ "keywords": ["memory", "llm", "ai", "rust", "napi"]
13
+ }