@aigne/agentic-memory 1.0.10 → 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 +11 -0
  2. package/README.md +11 -2
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.11](https://github.com/AIGNE-io/aigne-framework/compare/agentic-memory-v1.0.10...agentic-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/default-memory bumped to 1.0.11
12
+ * @aigne/openai bumped to 0.10.11
13
+
3
14
  ## [1.0.10](https://github.com/AIGNE-io/aigne-framework/compare/agentic-memory-v1.0.9...agentic-memory-v1.0.10) (2025-08-04)
4
15
 
5
16
 
package/README.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @aigne/agentic-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)
@@ -43,8 +51,8 @@ pnpm add @aigne/agentic-memory
43
51
  ## Basic Usage
44
52
 
45
53
  ```typescript
46
- import { AIAgent, AIGNE } from "@aigne/core";
47
54
  import { AgenticMemory } from "@aigne/agentic-memory";
55
+ import { AIAgent, AIGNE } from "@aigne/core";
48
56
  import { OpenAIChatModel } from "@aigne/openai";
49
57
 
50
58
  // Create AI model instance
@@ -64,7 +72,8 @@ const memory = new AgenticMemory({
64
72
  // Create AI agent with intelligent memory
65
73
  const agent = AIAgent.from({
66
74
  name: "SmartAssistant",
67
- instructions: "You are a helpful assistant with intelligent memory capabilities.",
75
+ instructions:
76
+ "You are a helpful assistant with intelligent memory capabilities.",
68
77
  memory: memory,
69
78
  inputKey: "message",
70
79
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/agentic-memory",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Agentic memory for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -26,9 +26,9 @@
26
26
  "types": "./lib/dts/index.d.ts",
27
27
  "dependencies": {
28
28
  "zod": "^3.25.67",
29
- "@aigne/core": "^1.43.0",
30
- "@aigne/default-memory": "^1.0.10",
31
- "@aigne/openai": "^0.10.10"
29
+ "@aigne/core": "^1.43.1",
30
+ "@aigne/default-memory": "^1.0.11",
31
+ "@aigne/openai": "^0.10.11"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/bun": "^1.2.18",