@aigne/example-chat-bot 1.15.64 → 1.15.65

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/CHANGELOG.md +14 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.15.65](https://github.com/AIGNE-io/aigne-framework/compare/example-chat-bot-v1.15.64...example-chat-bot-v1.15.65) (2025-09-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **cli:** run default agent if `entry-agent` argument not present ([#473](https://github.com/AIGNE-io/aigne-framework/issues/473)) ([8c46672](https://github.com/AIGNE-io/aigne-framework/commit/8c4667206a2336e74db07442dc296ef9f9265a0b))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/cli bumped to 1.46.0
16
+
3
17
  ## [1.15.64](https://github.com/AIGNE-io/aigne-framework/compare/example-chat-bot-v1.15.63...example-chat-bot-v1.15.64) (2025-09-09)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-chat-bot",
3
- "version": "1.15.64",
3
+ "version": "1.15.65",
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,10 +12,10 @@
12
12
  "type": "module",
13
13
  "bin": "aigne.yaml",
14
14
  "dependencies": {
15
- "@aigne/cli": "^1.45.0"
15
+ "@aigne/cli": "^1.46.0"
16
16
  },
17
17
  "scripts": {
18
18
  "test": "aigne test",
19
- "test:llm": "aigne run . chat --input 'What can AIGNE do?'"
19
+ "test:llm": "aigne run --input 'What can AIGNE do?'"
20
20
  }
21
21
  }