@aigne/example-workflow-group-chat 1.18.6-beta.3 → 1.18.6-beta.31
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/README.md +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ class illustrator processing
|
|
|
56
56
|
npx -y @aigne/example-workflow-group-chat
|
|
57
57
|
|
|
58
58
|
# Run in interactive chat mode
|
|
59
|
-
npx -y @aigne/example-workflow-group-chat --
|
|
59
|
+
npx -y @aigne/example-workflow-group-chat --interactive
|
|
60
60
|
|
|
61
61
|
# Use pipeline input
|
|
62
62
|
echo "Write a short story about space exploration" | npx -y @aigne/example-workflow-group-chat
|
|
@@ -96,7 +96,7 @@ pnpm install
|
|
|
96
96
|
pnpm start # Run in one-shot mode (default)
|
|
97
97
|
|
|
98
98
|
# Run in interactive chat mode
|
|
99
|
-
pnpm start -- --
|
|
99
|
+
pnpm start -- --interactive
|
|
100
100
|
|
|
101
101
|
# Use pipeline input
|
|
102
102
|
echo "Write a short story about space exploration" | pnpm start
|
|
@@ -108,7 +108,7 @@ The example supports the following command-line parameters:
|
|
|
108
108
|
|
|
109
109
|
| Parameter | Description | Default |
|
|
110
110
|
|-----------|-------------|---------|
|
|
111
|
-
| `--
|
|
111
|
+
| `--interactive` | Run in interactive chat mode | Disabled (one-shot mode) |
|
|
112
112
|
| `--model <provider[:model]>` | AI model to use in format 'provider\[:model]' where model is optional. Examples: 'openai' or 'openai:gpt-4o-mini' | openai |
|
|
113
113
|
| `--temperature <value>` | Temperature for model generation | Provider default |
|
|
114
114
|
| `--top-p <value>` | Top-p sampling value | Provider default |
|
|
@@ -121,7 +121,7 @@ The example supports the following command-line parameters:
|
|
|
121
121
|
|
|
122
122
|
```bash
|
|
123
123
|
# Run in chat mode (interactive)
|
|
124
|
-
pnpm start -- --
|
|
124
|
+
pnpm start -- --interactive
|
|
125
125
|
|
|
126
126
|
# Set logging level
|
|
127
127
|
pnpm start -- --log-level DEBUG
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-workflow-group-chat",
|
|
3
|
-
"version": "1.18.6-beta.
|
|
3
|
+
"version": "1.18.6-beta.31",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework to build a group chat workflow",
|
|
5
5
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
6
|
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/workflow-group-chat",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"inquirer": "^12.9.6",
|
|
20
20
|
"zod": "^3.25.67",
|
|
21
|
-
"@aigne/agent-library": "^1.24.0-beta.
|
|
22
|
-
"@aigne/cli": "^1.59.0-beta.
|
|
23
|
-
"@aigne/core": "^1.72.0-beta.
|
|
24
|
-
"@aigne/default-memory": "^1.
|
|
25
|
-
"@aigne/openai": "^0.16.16-beta.
|
|
21
|
+
"@aigne/agent-library": "^1.24.0-beta.26",
|
|
22
|
+
"@aigne/cli": "^1.59.0-beta.30",
|
|
23
|
+
"@aigne/core": "^1.72.0-beta.24",
|
|
24
|
+
"@aigne/default-memory": "^1.4.0-beta.23",
|
|
25
|
+
"@aigne/openai": "^0.16.16-beta.24"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/bun": "^1.2.22",
|
|
29
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
29
|
+
"@aigne/test-utils": "^0.5.69-beta.24"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"start": "bun run index.ts",
|