@aigne/did-space-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.
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/did-space-memory-v1.0.10...did-space-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/did-space-memory-v1.0.9...did-space-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/did-space-memory-v1.0.8...did-space-memory-v1.0.9) (2025-08-01)
4
24
 
5
25
 
package/README.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @aigne/did-space-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)
@@ -110,7 +118,7 @@ const memory = new DIDSpacesMemory({
110
118
  },
111
119
  // Custom memory recorder agent configuration
112
120
  recorderOptions: {
113
- name: "CustomRecorder",
121
+ name: "CustomRecorder",
114
122
  instructions: "Custom recording instructions",
115
123
  },
116
124
  // Other agent configurations
@@ -121,7 +129,6 @@ const memory = new DIDSpacesMemory({
121
129
  ### Using Different Authentication Methods
122
130
 
123
131
  ```typescript
124
- // Using access token authentication
125
132
  const memory1 = new DIDSpacesMemory({
126
133
  url: "https://your-did-spaces-url.com",
127
134
  auth: {
@@ -141,7 +148,6 @@ const memory2 = new DIDSpacesMemory({
141
148
  ## Memory Management Features
142
149
 
143
150
  ```typescript
144
- // Get memory storage client
145
151
  const client = memory.client;
146
152
 
147
153
  // List all memory files
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/did-space-memory",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "DID Spaces memory for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -29,8 +29,8 @@
29
29
  "@did-space/core": "^1.1.3",
30
30
  "yaml": "^2.8.0",
31
31
  "zod": "^3.25.67",
32
- "@aigne/core": "^1.42.0",
33
- "@aigne/openai": "^0.10.9"
32
+ "@aigne/openai": "^0.10.11",
33
+ "@aigne/core": "^1.43.1"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/bun": "^1.2.18",