@aigne/agent-library 1.23.0-beta.3 → 1.23.0-beta.5

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
@@ -7,6 +7,33 @@
7
7
  * @aigne/core bumped to 1.22.0
8
8
  * @aigne/openai bumped to 0.3.4
9
9
 
10
+ ## [1.23.0-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.23.0-beta.4...agent-library-v1.23.0-beta.5) (2025-12-10)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * bump version ([af04b69](https://github.com/AIGNE-io/aigne-framework/commit/af04b6931951afa35d52065430acc7fef4b10087))
16
+ * **core:** support load third agent in skills ([#819](https://github.com/AIGNE-io/aigne-framework/issues/819)) ([bcbb140](https://github.com/AIGNE-io/aigne-framework/commit/bcbb1404d2fe9c709d99a8c28883b21dd107a844))
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * The following workspace dependencies were updated
22
+ * dependencies
23
+ * @aigne/core bumped to 1.71.0-beta.4
24
+ * @aigne/openai bumped to 0.16.15-beta.4
25
+ * @aigne/sqlite bumped to 0.4.8-beta
26
+
27
+ ## [1.23.0-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.23.0-beta.3...agent-library-v1.23.0-beta.4) (2025-12-10)
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @aigne/core bumped to 1.71.0-beta.3
35
+ * @aigne/openai bumped to 0.16.15-beta.3
36
+
10
37
  ## [1.23.0-beta.3](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.23.0-beta.2...agent-library-v1.23.0-beta.3) (2025-12-09)
11
38
 
12
39
 
@@ -55,7 +55,7 @@ const defaultCompleterOptions = {
55
55
  */
56
56
  class OrchestratorAgent extends core_1.AIAgent {
57
57
  tag = "OrchestratorAgent";
58
- static async load({ filepath, parsed, options, }) {
58
+ static async load({ filepath, parsed, options = {}, }) {
59
59
  const schema = getOrchestratorAgentSchema({ filepath });
60
60
  const valid = await schema.parseAsync(parsed);
61
61
  return new OrchestratorAgent({
@@ -52,7 +52,7 @@ const defaultCompleterOptions = {
52
52
  */
53
53
  export class OrchestratorAgent extends AIAgent {
54
54
  tag = "OrchestratorAgent";
55
- static async load({ filepath, parsed, options, }) {
55
+ static async load({ filepath, parsed, options = {}, }) {
56
56
  const schema = getOrchestratorAgentSchema({ filepath });
57
57
  const valid = await schema.parseAsync(parsed);
58
58
  return new OrchestratorAgent({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/agent-library",
3
- "version": "1.23.0-beta.3",
3
+ "version": "1.23.0-beta.5",
4
4
  "description": "Collection of agent libraries for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -55,9 +55,9 @@
55
55
  "yaml": "^2.8.1",
56
56
  "zod": "^3.25.67",
57
57
  "zod-to-json-schema": "^3.24.6",
58
- "@aigne/openai": "^0.16.15-beta.2",
59
- "@aigne/core": "^1.71.0-beta.2",
60
- "@aigne/sqlite": "^0.4.7"
58
+ "@aigne/core": "^1.71.0-beta.4",
59
+ "@aigne/openai": "^0.16.15-beta.4",
60
+ "@aigne/sqlite": "^0.4.8-beta"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/bun": "^1.2.22",