@aigne/example-chat-bot 1.15.91-beta.12 → 1.15.91-beta.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.15.91-beta.13](https://github.com/AIGNE-io/aigne-framework/compare/example-chat-bot-v1.15.91-beta.12...example-chat-bot-v1.15.91-beta.13) (2026-01-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **cli:** rename cmd option --chat to --interactive ([#865](https://github.com/AIGNE-io/aigne-framework/issues/865)) ([480eca4](https://github.com/AIGNE-io/aigne-framework/commit/480eca49a7381a330024f1f0026bbc5f89b57bbb))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/cli bumped to 1.59.0-beta.12
16
+
3
17
  ## [1.15.91-beta.12](https://github.com/AIGNE-io/aigne-framework/compare/example-chat-bot-v1.15.91-beta.11...example-chat-bot-v1.15.91-beta.12) (2025-12-31)
4
18
 
5
19
 
package/README.md CHANGED
@@ -24,7 +24,7 @@ This example demonstrates how to create and run an agent-based chatbot using the
24
24
  npx -y @aigne/example-chat-bot
25
25
 
26
26
  # Run in interactive chat mode
27
- npx -y @aigne/example-chat-bot --chat
27
+ npx -y @aigne/example-chat-bot --interactive
28
28
 
29
29
  # Use pipeline input
30
30
  echo "Tell me about AIGNE Framework" | npx -y @aigne/example-chat-bot
@@ -32,7 +32,7 @@ echo "Tell me about AIGNE Framework" | npx -y @aigne/example-chat-bot
32
32
 
33
33
  ### Connect to an AI Model
34
34
 
35
- As an example, running `npx -y @aigne/example-chat-bot --chat` requires an AI model. If this is your first run, you need to connect one.
35
+ As an example, running `npx -y @aigne/example-chat-bot --interactive` requires an AI model. If this is your first run, you need to connect one.
36
36
 
37
37
  ![run example](./run-example.png)
38
38
 
@@ -93,7 +93,7 @@ cd aigne-framework/examples/chat-bot
93
93
  pnpm start # Run in one-shot mode (default)
94
94
 
95
95
  # Run in interactive chat mode
96
- pnpm start --chat
96
+ pnpm start --interactive
97
97
 
98
98
  # Use pipeline input
99
99
  echo "Tell me about AIGNE Framework" | pnpm start
@@ -105,7 +105,7 @@ The example supports the following command-line parameters:
105
105
 
106
106
  | Parameter | Description | Default |
107
107
  |-----------|-------------|---------|
108
- | `--chat` | Run in interactive chat mode | Disabled (one-shot mode) |
108
+ | `--interactive` | Run in interactive chat mode | Disabled (one-shot mode) |
109
109
  | `--model <provider[:model]>` | AI model to use in format 'provider\[:model]' where model is optional. Examples: 'openai' or 'openai:gpt-4o-mini' | openai |
110
110
  | `--temperature <value>` | Temperature for model generation | Provider default |
111
111
  | `--top-p <value>` | Top-p sampling value | Provider default |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-chat-bot",
3
- "version": "1.15.91-beta.12",
3
+ "version": "1.15.91-beta.13",
4
4
  "description": "A demonstration of using AIGNE Framework to build a chat bot",
5
5
  "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
6
6
  "homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/chat-bot",
@@ -12,7 +12,7 @@
12
12
  "type": "module",
13
13
  "bin": "aigne.yaml",
14
14
  "dependencies": {
15
- "@aigne/cli": "^1.59.0-beta.11"
15
+ "@aigne/cli": "^1.59.0-beta.12"
16
16
  },
17
17
  "scripts": {
18
18
  "start": "aigne run",