@aigne/example-mcp-blocklet 1.17.6-beta.3 → 1.17.6-beta.30

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 (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -29,7 +29,7 @@ export BLOCKLET_APP_URL="https://xxx.xxxx.xxx" # Your Blocklet app URL
29
29
  npx -y @aigne/example-mcp-blocklet
30
30
 
31
31
  # Run in interactive chat mode
32
- npx -y @aigne/example-mcp-blocklet --chat
32
+ npx -y @aigne/example-mcp-blocklet --interactive
33
33
 
34
34
  # Use pipeline input
35
35
  echo "What are the features of this blocklet app?" | npx -y @aigne/example-mcp-blocklet
@@ -37,7 +37,7 @@ echo "What are the features of this blocklet app?" | npx -y @aigne/example-mcp-b
37
37
 
38
38
  ### Connect to an AI Model
39
39
 
40
- As an example, running `npx -y @aigne/example-mcp-blocklet --chat` requires an AI model. If this is your first run, you need to connect one.
40
+ As an example, running `npx -y @aigne/example-mcp-blocklet --interactive` requires an AI model. If this is your first run, you need to connect one.
41
41
 
42
42
  ![run example](./run-example.png)
43
43
 
@@ -110,7 +110,7 @@ The example supports the following command-line parameters:
110
110
 
111
111
  | Parameter | Description | Default |
112
112
  |-----------|-------------|---------|
113
- | `--chat` | Run in interactive chat mode | Disabled (one-shot mode) |
113
+ | `--interactive` | Run in interactive chat mode | Disabled (one-shot mode) |
114
114
  | `--model <provider[:model]>` | AI model to use in format 'provider\[:model]' where model is optional. Examples: 'openai' or 'openai:gpt-4o-mini' | openai |
115
115
  | `--temperature <value>` | Temperature for model generation | Provider default |
116
116
  | `--top-p <value>` | Top-p sampling value | Provider default |
@@ -123,7 +123,7 @@ The example supports the following command-line parameters:
123
123
 
124
124
  ```bash
125
125
  # Run in chat mode (interactive)
126
- pnpm start -- --chat
126
+ pnpm start -- --interactive
127
127
 
128
128
  # Set logging level
129
129
  pnpm start -- --log-level DEBUG
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-mcp-blocklet",
3
- "version": "1.17.6-beta.3",
3
+ "version": "1.17.6-beta.30",
4
4
  "description": "A demonstration of using AIGNE Framework and MCP Server hosted by the Blocklet platform",
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-blocklet",
@@ -21,14 +21,14 @@
21
21
  "open": "^10.2.0",
22
22
  "ufo": "^1.6.1",
23
23
  "zod": "^3.25.67",
24
- "@aigne/cli": "^1.59.0-beta.2",
25
- "@aigne/core": "^1.72.0-beta.3",
26
- "@aigne/agent-library": "^1.24.0-beta.3",
27
- "@aigne/default-memory": "^1.3.6-beta.3"
24
+ "@aigne/agent-library": "^1.24.0-beta.25",
25
+ "@aigne/cli": "^1.59.0-beta.29",
26
+ "@aigne/core": "^1.72.0-beta.23",
27
+ "@aigne/default-memory": "^1.4.0-beta.22"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/jsonwebtoken": "^9.0.10",
31
- "@aigne/test-utils": "^0.5.69-beta.3"
31
+ "@aigne/test-utils": "^0.5.69-beta.23"
32
32
  },
33
33
  "scripts": {
34
34
  "start": "bun run index.ts",