@aigne/agent-library 1.21.13 → 1.21.15
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 +20 -0
- package/README.md +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,26 @@
|
|
|
13
13
|
* @aigne/core bumped to 1.22.0
|
|
14
14
|
* @aigne/openai bumped to 0.3.4
|
|
15
15
|
|
|
16
|
+
## [1.21.15](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.21.14...agent-library-v1.21.15) (2025-08-08)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
* The following workspace dependencies were updated
|
|
22
|
+
* dependencies
|
|
23
|
+
* @aigne/core bumped to 1.46.1
|
|
24
|
+
* @aigne/openai bumped to 0.10.15
|
|
25
|
+
|
|
26
|
+
## [1.21.14](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.21.13...agent-library-v1.21.14) (2025-08-06)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
* The following workspace dependencies were updated
|
|
32
|
+
* dependencies
|
|
33
|
+
* @aigne/core bumped to 1.46.0
|
|
34
|
+
* @aigne/openai bumped to 0.10.14
|
|
35
|
+
|
|
16
36
|
## [1.21.13](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.21.12...agent-library-v1.21.13) (2025-08-06)
|
|
17
37
|
|
|
18
38
|
|
package/README.md
CHANGED
|
@@ -20,6 +20,12 @@ Collection of agent libraries for [AIGNE Framework](https://github.com/AIGNE-io/
|
|
|
20
20
|
|
|
21
21
|
`@aigne/agent-library` is a collection of agent libraries for [AIGNE Framework](https://github.com/AIGNE-io/aigne-framework), providing pre-built agent implementations for developers. The library is built on top of [@aigne/core](https://github.com/AIGNE-io/aigne-framework/tree/main/packages/core), extending the core functionality to simplify complex workflow orchestration.
|
|
22
22
|
|
|
23
|
+
<picture>
|
|
24
|
+
<source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/assets/aigne-libs-dark.png" media="(prefers-color-scheme: dark)">
|
|
25
|
+
<source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/assets/aigne-libs.png" media="(prefers-color-scheme: light)">
|
|
26
|
+
<img src="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/aigne-libs.png" alt="AIGNE Arch" />
|
|
27
|
+
</picture>
|
|
28
|
+
|
|
23
29
|
## Features
|
|
24
30
|
|
|
25
31
|
* **Orchestrator Agent**: Provides OrchestratorAgent implementation for coordinating workflows between multiple agents
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/agent-library",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.15",
|
|
4
4
|
"description": "Collection of agent libraries for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"uuid": "^11.1.0",
|
|
50
50
|
"yaml": "^2.8.0",
|
|
51
51
|
"zod": "^3.25.67",
|
|
52
|
-
"@aigne/
|
|
52
|
+
"@aigne/core": "^1.46.1",
|
|
53
53
|
"@aigne/sqlite": "^0.4.0",
|
|
54
|
-
"@aigne/
|
|
54
|
+
"@aigne/openai": "^0.10.15"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/bun": "^1.2.18",
|