@aigne/agent-library 1.23.0-beta.3 → 1.23.0-beta.6
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,43 @@
|
|
|
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.6](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.23.0-beta.5...agent-library-v1.23.0-beta.6) (2025-12-11)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* The following workspace dependencies were updated
|
|
16
|
+
* dependencies
|
|
17
|
+
* @aigne/core bumped to 1.71.0-beta.5
|
|
18
|
+
* @aigne/openai bumped to 0.16.15-beta.5
|
|
19
|
+
|
|
20
|
+
## [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)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* bump version ([af04b69](https://github.com/AIGNE-io/aigne-framework/commit/af04b6931951afa35d52065430acc7fef4b10087))
|
|
26
|
+
* **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))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
* The following workspace dependencies were updated
|
|
32
|
+
* dependencies
|
|
33
|
+
* @aigne/core bumped to 1.71.0-beta.4
|
|
34
|
+
* @aigne/openai bumped to 0.16.15-beta.4
|
|
35
|
+
* @aigne/sqlite bumped to 0.4.8-beta
|
|
36
|
+
|
|
37
|
+
## [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)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Dependencies
|
|
41
|
+
|
|
42
|
+
* The following workspace dependencies were updated
|
|
43
|
+
* dependencies
|
|
44
|
+
* @aigne/core bumped to 1.71.0-beta.3
|
|
45
|
+
* @aigne/openai bumped to 0.16.15-beta.3
|
|
46
|
+
|
|
10
47
|
## [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
48
|
|
|
12
49
|
|
|
@@ -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
|
+
"version": "1.23.0-beta.6",
|
|
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.
|
|
59
|
-
"@aigne/core": "^1.71.0-beta.
|
|
60
|
-
"@aigne/sqlite": "^0.4.
|
|
58
|
+
"@aigne/openai": "^0.16.15-beta.5",
|
|
59
|
+
"@aigne/core": "^1.71.0-beta.5",
|
|
60
|
+
"@aigne/sqlite": "^0.4.8-beta"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@types/bun": "^1.2.22",
|