@aigne/agent-library 1.14.0 → 1.15.0
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
|
@@ -5,6 +5,21 @@
|
|
|
5
5
|
|
|
6
6
|
* add schema transform ([#35](https://github.com/AIGNE-io/aigne-framework/issues/35)) ([c7d9a2c](https://github.com/AIGNE-io/aigne-framework/commit/c7d9a2c9fcab8d384d4198db5ff6ba4603846cdf))
|
|
7
7
|
|
|
8
|
+
## [1.15.0](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.14.0...agent-library-v1.15.0) (2025-06-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* support observability for cli and blocklet ([#155](https://github.com/AIGNE-io/aigne-framework/issues/155)) ([5baa705](https://github.com/AIGNE-io/aigne-framework/commit/5baa705a33cfdba1efc5ccbe18674c27513ca97d))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* The following workspace dependencies were updated
|
|
19
|
+
* dependencies
|
|
20
|
+
* @aigne/core bumped to 1.22.0
|
|
21
|
+
* @aigne/openai bumped to 0.3.4
|
|
22
|
+
|
|
8
23
|
## [1.14.0](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.13.2...agent-library-v1.14.0) (2025-06-20)
|
|
9
24
|
|
|
10
25
|
|
|
@@ -62,6 +62,7 @@ export interface OrchestratorAgentOptions<I extends Message = Message, O extends
|
|
|
62
62
|
* - Synthesizes final result through completer
|
|
63
63
|
*/
|
|
64
64
|
export declare class OrchestratorAgent<I extends Message = Message, O extends Message = Message> extends Agent<I, O> {
|
|
65
|
+
tag: string;
|
|
65
66
|
/**
|
|
66
67
|
* Factory method to create an OrchestratorAgent instance
|
|
67
68
|
* @param options - Configuration options for the Orchestrator Agent
|
|
@@ -51,6 +51,7 @@ __exportStar(require("./orchestrator-prompts.js"), exports);
|
|
|
51
51
|
* - Synthesizes final result through completer
|
|
52
52
|
*/
|
|
53
53
|
class OrchestratorAgent extends core_1.Agent {
|
|
54
|
+
tag = "OrchestratorAgent";
|
|
54
55
|
/**
|
|
55
56
|
* Factory method to create an OrchestratorAgent instance
|
|
56
57
|
* @param options - Configuration options for the Orchestrator Agent
|
|
@@ -62,6 +62,7 @@ export interface OrchestratorAgentOptions<I extends Message = Message, O extends
|
|
|
62
62
|
* - Synthesizes final result through completer
|
|
63
63
|
*/
|
|
64
64
|
export declare class OrchestratorAgent<I extends Message = Message, O extends Message = Message> extends Agent<I, O> {
|
|
65
|
+
tag: string;
|
|
65
66
|
/**
|
|
66
67
|
* Factory method to create an OrchestratorAgent instance
|
|
67
68
|
* @param options - Configuration options for the Orchestrator Agent
|
|
@@ -62,6 +62,7 @@ export interface OrchestratorAgentOptions<I extends Message = Message, O extends
|
|
|
62
62
|
* - Synthesizes final result through completer
|
|
63
63
|
*/
|
|
64
64
|
export declare class OrchestratorAgent<I extends Message = Message, O extends Message = Message> extends Agent<I, O> {
|
|
65
|
+
tag: string;
|
|
65
66
|
/**
|
|
66
67
|
* Factory method to create an OrchestratorAgent instance
|
|
67
68
|
* @param options - Configuration options for the Orchestrator Agent
|
|
@@ -31,6 +31,7 @@ export * from "./orchestrator-prompts.js";
|
|
|
31
31
|
* - Synthesizes final result through completer
|
|
32
32
|
*/
|
|
33
33
|
export class OrchestratorAgent extends Agent {
|
|
34
|
+
tag = "OrchestratorAgent";
|
|
34
35
|
/**
|
|
35
36
|
* Factory method to create an OrchestratorAgent instance
|
|
36
37
|
* @param options - Configuration options for the Orchestrator Agent
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/agent-library",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "Collection of agent libraries for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"uuid": "^11.1.0",
|
|
48
48
|
"yaml": "^2.7.1",
|
|
49
49
|
"zod": "^3.24.4",
|
|
50
|
-
"@aigne/core": "^1.
|
|
50
|
+
"@aigne/core": "^1.22.0",
|
|
51
51
|
"@aigne/sqlite": "^0.1.1",
|
|
52
|
-
"@aigne/openai": "^0.3.
|
|
52
|
+
"@aigne/openai": "^0.3.4"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/bun": "^1.2.12",
|