@aigne/default-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 +22 -0
- package/README.md +9 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.11](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.0.10...default-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
|
+
* devDependencies
|
|
12
|
+
* @aigne/openai bumped to 0.10.11
|
|
13
|
+
|
|
14
|
+
## [1.0.10](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.0.9...default-memory-v1.0.10) (2025-08-04)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* The following workspace dependencies were updated
|
|
20
|
+
* dependencies
|
|
21
|
+
* @aigne/core bumped to 1.43.0
|
|
22
|
+
* devDependencies
|
|
23
|
+
* @aigne/openai bumped to 0.10.10
|
|
24
|
+
|
|
3
25
|
## [1.0.9](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.0.8...default-memory-v1.0.9) (2025-08-01)
|
|
4
26
|
|
|
5
27
|
|
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
|
[](https://star-history.com/#AIGNE-io/aigne-framework)
|
|
4
12
|
[](https://github.com/AIGNE-io/aigne-framework/issues)
|
|
5
13
|
[](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.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Default memory for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"uuid": "^11.1.0",
|
|
30
30
|
"yaml": "^2.8.0",
|
|
31
31
|
"zod": "^3.25.67",
|
|
32
|
-
"@aigne/core": "^1.
|
|
32
|
+
"@aigne/core": "^1.43.1",
|
|
33
33
|
"@aigne/sqlite": "^0.4.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"npm-run-all": "^4.1.5",
|
|
38
38
|
"rimraf": "^6.0.1",
|
|
39
39
|
"typescript": "^5.8.3",
|
|
40
|
-
"@aigne/openai": "^0.10.
|
|
40
|
+
"@aigne/openai": "^0.10.11"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"lint": "tsc --noEmit",
|