@aigne/default-memory 1.0.10 → 1.0.12

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/CHANGELOG.md +27 -0
  2. package/README.md +9 -1
  3. package/package.json +10 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.12](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.0.11...default-memory-v1.0.12) (2025-08-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **cli:** ensure aigne cli works in node.js v20+ ([#316](https://github.com/AIGNE-io/aigne-framework/issues/316)) ([9c9c3d2](https://github.com/AIGNE-io/aigne-framework/commit/9c9c3d2e57d6a8e1afb33ef903c3703283d73db7))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/core bumped to 1.44.0
16
+ * devDependencies
17
+ * @aigne/openai bumped to 0.10.12
18
+
19
+ ## [1.0.11](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.0.10...default-memory-v1.0.11) (2025-08-05)
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * The following workspace dependencies were updated
25
+ * dependencies
26
+ * @aigne/core bumped to 1.43.1
27
+ * devDependencies
28
+ * @aigne/openai bumped to 0.10.11
29
+
3
30
  ## [1.0.10](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.0.9...default-memory-v1.0.10) (2025-08-04)
4
31
 
5
32
 
package/README.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @aigne/default-memory
2
2
 
3
+ <p align="center">
4
+ <picture>
5
+ <source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/logo-dark.svg" media="(prefers-color-scheme: dark)">
6
+ <source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/logo.svg" media="(prefers-color-scheme: light)">
7
+ <img src="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/logo.svg" alt="AIGNE Logo" width="400" />
8
+ </picture>
9
+ </p>
10
+
3
11
  [![GitHub star chart](https://img.shields.io/github/stars/AIGNE-io/aigne-framework?style=flat-square)](https://star-history.com/#AIGNE-io/aigne-framework)
4
12
  [![Open Issues](https://img.shields.io/github/issues-raw/AIGNE-io/aigne-framework?style=flat-square)](https://github.com/AIGNE-io/aigne-framework/issues)
5
13
  [![codecov](https://codecov.io/gh/AIGNE-io/aigne-framework/graph/badge.svg?token=DO07834RQL)](https://codecov.io/gh/AIGNE-io/aigne-framework)
@@ -156,7 +164,7 @@ const agent1 = AIAgent.from({
156
164
  });
157
165
 
158
166
  const agent2 = AIAgent.from({
159
- name: "Agent2",
167
+ name: "Agent2",
160
168
  instructions: "You are assistant 2",
161
169
  memory: sharedMemory,
162
170
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/default-memory",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "Default memory for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,12 +24,19 @@
24
24
  "main": "./lib/cjs/index.js",
25
25
  "module": "./lib/esm/index.js",
26
26
  "types": "./lib/dts/index.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "import": "./lib/esm/index.js",
30
+ "require": "./lib/cjs/index.js",
31
+ "types": "./lib/dts/index.d.ts"
32
+ }
33
+ },
27
34
  "dependencies": {
28
35
  "drizzle-orm": "^0.44.2",
29
36
  "uuid": "^11.1.0",
30
37
  "yaml": "^2.8.0",
31
38
  "zod": "^3.25.67",
32
- "@aigne/core": "^1.43.0",
39
+ "@aigne/core": "^1.44.0",
33
40
  "@aigne/sqlite": "^0.4.0"
34
41
  },
35
42
  "devDependencies": {
@@ -37,7 +44,7 @@
37
44
  "npm-run-all": "^4.1.5",
38
45
  "rimraf": "^6.0.1",
39
46
  "typescript": "^5.8.3",
40
- "@aigne/openai": "^0.10.10"
47
+ "@aigne/openai": "^0.10.12"
41
48
  },
42
49
  "scripts": {
43
50
  "lint": "tsc --noEmit",