@aigne/gemini 0.14.2-beta.5 → 0.14.2-beta.7

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
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.14.2-beta.7](https://github.com/AIGNE-io/aigne-framework/compare/gemini-v0.14.2-beta.6...gemini-v0.14.2-beta.7) (2025-10-15)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/openai bumped to 0.16.2-beta.7
11
+ * devDependencies
12
+ * @aigne/core bumped to 1.63.0-beta.7
13
+ * @aigne/test-utils bumped to 0.5.55-beta.7
14
+
15
+ ## [0.14.2-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/gemini-v0.14.2-beta.5...gemini-v0.14.2-beta.6) (2025-10-15)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **models:** add imageConfig to gemini image model ([#621](https://github.com/AIGNE-io/aigne-framework/issues/621)) ([252de7a](https://github.com/AIGNE-io/aigne-framework/commit/252de7a10701c4f5302c2fff977c88e5e833b7b1))
21
+
22
+
23
+ ### Dependencies
24
+
25
+ * The following workspace dependencies were updated
26
+ * dependencies
27
+ * @aigne/openai bumped to 0.16.2-beta.6
28
+ * devDependencies
29
+ * @aigne/core bumped to 1.63.0-beta.6
30
+ * @aigne/test-utils bumped to 0.5.55-beta.6
31
+
3
32
  ## [0.14.2-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/gemini-v0.14.2-beta.4...gemini-v0.14.2-beta.5) (2025-10-13)
4
33
 
5
34
 
@@ -132,6 +132,7 @@ class GeminiImageModel extends core_1.ImageModel {
132
132
  "tools",
133
133
  "topK",
134
134
  "topP",
135
+ "imageConfig",
135
136
  ];
136
137
  const images = await Promise.all((0, type_utils_js_1.flat)(input.image).map(async (image) => {
137
138
  const { data, mimeType } = await this.transformFileType("file", image, options);
@@ -129,6 +129,7 @@ export class GeminiImageModel extends ImageModel {
129
129
  "tools",
130
130
  "topK",
131
131
  "topP",
132
+ "imageConfig",
132
133
  ];
133
134
  const images = await Promise.all(flat(input.image).map(async (image) => {
134
135
  const { data, mimeType } = await this.transformFileType("file", image, options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/gemini",
3
- "version": "0.14.2-beta.5",
3
+ "version": "0.14.2-beta.7",
4
4
  "description": "AIGNE Gemini SDK for integrating with Google's Gemini AI models",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,9 +36,9 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@aigne/uuid": "^13.0.1",
39
- "@google/genai": "^1.20.0",
39
+ "@google/genai": "^1.24.0",
40
40
  "zod": "^3.25.67",
41
- "@aigne/openai": "^0.16.2-beta.5",
41
+ "@aigne/openai": "^0.16.2-beta.7",
42
42
  "@aigne/platform-helpers": "^0.6.3"
43
43
  },
44
44
  "devDependencies": {
@@ -47,8 +47,8 @@
47
47
  "npm-run-all": "^4.1.5",
48
48
  "rimraf": "^6.0.1",
49
49
  "typescript": "^5.9.2",
50
- "@aigne/core": "^1.63.0-beta.5",
51
- "@aigne/test-utils": "^0.5.55-beta.5"
50
+ "@aigne/test-utils": "^0.5.55-beta.7",
51
+ "@aigne/core": "^1.63.0-beta.7"
52
52
  },
53
53
  "scripts": {
54
54
  "lint": "tsc --noEmit",