@aigne/example-mcp-puppeteer 1.9.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-puppeteer",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "description": "A demonstration of using AIGNE Framework and Puppeteer MCP Server to extract content from websites using Puppeteer",
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-puppeteer",
@@ -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/cli": "^1.8.0",
22
- "@aigne/core": "^1.12.0"
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
@@ -25,6 +25,7 @@ const agent = AIAgent.from({
25
25
  1. navigate to the url
26
26
  2. evaluate document.body.innerText to get the content
27
27
  `,
28
+ memory: true,
28
29
  });
29
30
 
30
31
  const result = await aigne.invoke(agent, "extract content from https://www.arcblock.io");
File without changes