@aigne/example-mcp-sqlite 1.10.0 → 1.11.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-mcp-sqlite",
3
- "version": "1.10.0",
3
+ "version": "1.11.0",
4
4
  "description": "A demonstration of using AIGNE Framework and Sqlite MCP Server to interact with a SQLite database",
5
5
  "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
6
6
  "homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/mcp-sqlite",
@@ -16,13 +16,13 @@
16
16
  "README.md"
17
17
  ],
18
18
  "dependencies": {
19
- "openai": "^4.94.0",
20
- "zod": "^3.24.2",
21
- "@aigne/core": "^1.13.0",
22
- "@aigne/cli": "^1.8.1"
19
+ "openai": "^4.97.0",
20
+ "zod": "^3.24.4",
21
+ "@aigne/cli": "^1.9.0",
22
+ "@aigne/core": "^1.14.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@aigne/test-utils": "^0.1.0"
25
+ "@aigne/test-utils": "^0.2.0"
26
26
  },
27
27
  "scripts": {
28
28
  "start": "bun run index.ts",
package/usages.ts CHANGED
@@ -22,6 +22,7 @@ const aigne = new AIGNE({
22
22
 
23
23
  const agent = AIAgent.from({
24
24
  instructions: "You are a database administrator",
25
+ memory: true,
25
26
  });
26
27
 
27
28
  console.log(
File without changes