@aigne/agent-library 1.23.0-beta → 1.23.0-beta.2
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,23 @@
|
|
|
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.2](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.23.0-beta.1...agent-library-v1.23.0-beta.2) (2025-12-08)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **orchestrator:** add default task title for worker agent ([#809](https://github.com/AIGNE-io/aigne-framework/issues/809)) ([3524c3c](https://github.com/AIGNE-io/aigne-framework/commit/3524c3c03c6a6822656c8b1684660677af49d508))
|
|
16
|
+
|
|
17
|
+
## [1.23.0-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.23.0-beta...agent-library-v1.23.0-beta.1) (2025-12-08)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* The following workspace dependencies were updated
|
|
23
|
+
* dependencies
|
|
24
|
+
* @aigne/core bumped to 1.71.0-beta.1
|
|
25
|
+
* @aigne/openai bumped to 0.16.15-beta.1
|
|
26
|
+
|
|
10
27
|
## [1.23.0-beta](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.22.4...agent-library-v1.23.0-beta) (2025-12-07)
|
|
11
28
|
|
|
12
29
|
|
|
@@ -47,6 +47,7 @@ class OrchestratorAgent extends core_1.AIAgent {
|
|
|
47
47
|
worker: valid.worker
|
|
48
48
|
? (await (0, index_js_1.loadNestAgent)(filepath, valid.worker, options, {
|
|
49
49
|
name: "Worker",
|
|
50
|
+
taskTitle: "Execute Task: {{task}}",
|
|
50
51
|
instructions: prompt_js_1.TODO_WORKER_PROMPT_TEMPLATE,
|
|
51
52
|
inputSchema: type_js_1.workerInputSchema,
|
|
52
53
|
outputSchema: type_js_1.workerOutputSchema,
|
|
@@ -94,6 +95,7 @@ class OrchestratorAgent extends core_1.AIAgent {
|
|
|
94
95
|
? options.worker
|
|
95
96
|
: new core_1.AIAgent({
|
|
96
97
|
...options,
|
|
98
|
+
taskTitle: "Execute Task: {{task}}",
|
|
97
99
|
name: "Worker",
|
|
98
100
|
instructions: prompt_js_1.TODO_WORKER_PROMPT_TEMPLATE,
|
|
99
101
|
inputSchema: type_js_1.workerInputSchema,
|
|
@@ -44,6 +44,7 @@ export class OrchestratorAgent extends AIAgent {
|
|
|
44
44
|
worker: valid.worker
|
|
45
45
|
? (await loadNestAgent(filepath, valid.worker, options, {
|
|
46
46
|
name: "Worker",
|
|
47
|
+
taskTitle: "Execute Task: {{task}}",
|
|
47
48
|
instructions: TODO_WORKER_PROMPT_TEMPLATE,
|
|
48
49
|
inputSchema: workerInputSchema,
|
|
49
50
|
outputSchema: workerOutputSchema,
|
|
@@ -91,6 +92,7 @@ export class OrchestratorAgent extends AIAgent {
|
|
|
91
92
|
? options.worker
|
|
92
93
|
: new AIAgent({
|
|
93
94
|
...options,
|
|
95
|
+
taskTitle: "Execute Task: {{task}}",
|
|
94
96
|
name: "Worker",
|
|
95
97
|
instructions: TODO_WORKER_PROMPT_TEMPLATE,
|
|
96
98
|
inputSchema: workerInputSchema,
|
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.2",
|
|
4
4
|
"description": "Collection of agent libraries for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"yaml": "^2.8.1",
|
|
56
56
|
"zod": "^3.25.67",
|
|
57
57
|
"zod-to-json-schema": "^3.24.6",
|
|
58
|
-
"@aigne/core": "^1.71.0-beta",
|
|
59
|
-
"@aigne/openai": "^0.16.15-beta",
|
|
58
|
+
"@aigne/core": "^1.71.0-beta.1",
|
|
59
|
+
"@aigne/openai": "^0.16.15-beta.1",
|
|
60
60
|
"@aigne/sqlite": "^0.4.7"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|