@aigne/fs-memory 1.0.9 → 1.0.11

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 +20 -0
  2. package/README.md +10 -2
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.11](https://github.com/AIGNE-io/aigne-framework/compare/fs-memory-v1.0.10...fs-memory-v1.0.11) (2025-08-05)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/core bumped to 1.43.1
11
+ * @aigne/openai bumped to 0.10.11
12
+
13
+ ## [1.0.10](https://github.com/AIGNE-io/aigne-framework/compare/fs-memory-v1.0.9...fs-memory-v1.0.10) (2025-08-04)
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @aigne/core bumped to 1.43.0
21
+ * @aigne/openai bumped to 0.10.10
22
+
3
23
  ## [1.0.9](https://github.com/AIGNE-io/aigne-framework/compare/fs-memory-v1.0.8...fs-memory-v1.0.9) (2025-08-01)
4
24
 
5
25
 
package/README.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @aigne/fs-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)
@@ -93,8 +101,8 @@ console.log(response2.message);
93
101
  ### Custom Memory Directory
94
102
 
95
103
  ```typescript
104
+ import { join } from "node:path";
96
105
  import { FSMemory } from "@aigne/fs-memory";
97
- import { join } from "path";
98
106
 
99
107
  // Using absolute path
100
108
  const memory1 = new FSMemory({
@@ -184,7 +192,7 @@ Each memory file contains YAML-formatted memory data:
184
192
  timestamp: 2024-01-01T10:00:00Z
185
193
  metadata:
186
194
  type: "preference"
187
-
195
+
188
196
  - id: memory-id-2
189
197
  content: "User is a software developer"
190
198
  timestamp: 2024-01-01T10:05:00Z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/fs-memory",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "FS memory for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -27,8 +27,8 @@
27
27
  "dependencies": {
28
28
  "yaml": "^2.8.0",
29
29
  "zod": "^3.25.67",
30
- "@aigne/core": "^1.42.0",
31
- "@aigne/openai": "^0.10.9"
30
+ "@aigne/core": "^1.43.1",
31
+ "@aigne/openai": "^0.10.11"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/bun": "^1.2.18",