@aigne/agent-library 1.12.5 → 1.13.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,31 @@
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.13.0](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.12.6...agent-library-v1.13.0) (2025-06-16)
9
+
10
+
11
+ ### Features
12
+
13
+ * support respond progressing chunks by enable `returnProgressChunks` option for aigne.invoke ([cf4c313](https://github.com/AIGNE-io/aigne-framework/commit/cf4c313ee69f255be799ac196da675b79f69bf76))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @aigne/core bumped to 1.19.0
21
+ * @aigne/openai bumped to 0.3.0
22
+
23
+ ## [1.12.6](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.12.5...agent-library-v1.12.6) (2025-06-11)
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @aigne/core bumped to 1.18.6
31
+ * @aigne/openai bumped to 0.2.7
32
+
8
33
  ## [1.12.5](https://github.com/AIGNE-io/aigne-framework/compare/agent-library-v1.12.4...agent-library-v1.12.5) (2025-06-06)
9
34
 
10
35
 
@@ -149,7 +149,6 @@ function addNullableToOptional(schema) {
149
149
  }
150
150
  return newSchema;
151
151
  }
152
- // biome-ignore lint/suspicious/noExplicitAny: <explanation>
153
152
  function makeNullable(schema) {
154
153
  if (!schema || typeof schema !== "object")
155
154
  return schema;
@@ -139,7 +139,6 @@ export function addNullableToOptional(schema) {
139
139
  }
140
140
  return newSchema;
141
141
  }
142
- // biome-ignore lint/suspicious/noExplicitAny: <explanation>
143
142
  function makeNullable(schema) {
144
143
  if (!schema || typeof schema !== "object")
145
144
  return schema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/agent-library",
3
- "version": "1.12.5",
3
+ "version": "1.13.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/openai": "^0.2.6",
51
- "@aigne/core": "^1.18.5",
52
- "@aigne/sqlite": "^0.1.1"
50
+ "@aigne/openai": "^0.3.0",
51
+ "@aigne/sqlite": "^0.1.1",
52
+ "@aigne/core": "^1.19.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@types/bun": "^1.2.12",