eidentic 0.1.2 → 0.1.3
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 +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ The `eidentic` package re-exports the core stack so you get everything in one in
|
|
|
46
46
|
| `@eidentic/types` | Canonical protocol types and port interfaces |
|
|
47
47
|
| `@eidentic/model` | `AIModel`, `AIEmbedder`, price tables, Ollama adapter |
|
|
48
48
|
| `@eidentic/sqlite` | `SqliteStore` — durable store over `better-sqlite3` (Node/Bun) |
|
|
49
|
-
| `@eidentic/convex` | `ConvexStore` — Convex-backed store + temporal KG + vector (reactive, TS-native) |
|
|
49
|
+
| `@eidentic/convex` | `ConvexStore` — Convex-backed store + temporal KG + vector + durable execution (reactive, TS-native) |
|
|
50
50
|
| `@eidentic/memory` | `Memory` — four-tier recall, self-editing blocks, knowledge graph |
|
|
51
51
|
| `@eidentic/cli` | `eidentic dev` / `eidentic studio` / `eidentic init` commands |
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eidentic",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@eidentic/cli": "0.1.2",
|
|
30
30
|
"@eidentic/core": "0.2.0",
|
|
31
|
+
"@eidentic/types": "0.2.0",
|
|
31
32
|
"@eidentic/model": "0.2.0",
|
|
32
33
|
"@eidentic/sqlite": "0.1.2",
|
|
33
|
-
"@eidentic/types": "0.2.0",
|
|
34
34
|
"@eidentic/memory": "0.1.2"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|