@aigne/aigne-hub 0.10.4-beta.7 → 0.10.4-beta.8

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.10.4-beta.8](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.4-beta.7...aigne-hub-v0.10.4-beta.8) (2025-10-31)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **models:** add image parameters support for video generation ([#684](https://github.com/AIGNE-io/aigne-framework/issues/684)) ([b048b7f](https://github.com/AIGNE-io/aigne-framework/commit/b048b7f92bd7a532dbdbeb6fb5fa5499bae6b953))
9
+ * **observability:** add image/video model cost calculation and improve trace detail UX ([#683](https://github.com/AIGNE-io/aigne-framework/issues/683)) ([07964e4](https://github.com/AIGNE-io/aigne-framework/commit/07964e47d84636b49a291bfe5c1cc1c4dd31f722))
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * The following workspace dependencies were updated
15
+ * dependencies
16
+ * @aigne/anthropic bumped to 0.14.4-beta.6
17
+ * @aigne/bedrock bumped to 0.10.9-beta.6
18
+ * @aigne/core bumped to 1.65.0-beta.5
19
+ * @aigne/deepseek bumped to 0.7.50-beta.6
20
+ * @aigne/doubao bumped to 1.1.4-beta.6
21
+ * @aigne/gemini bumped to 0.14.4-beta.8
22
+ * @aigne/ideogram bumped to 0.4.4-beta.6
23
+ * @aigne/ollama bumped to 0.7.50-beta.6
24
+ * @aigne/open-router bumped to 0.7.50-beta.6
25
+ * @aigne/openai bumped to 0.16.4-beta.6
26
+ * @aigne/poe bumped to 1.0.30-beta.6
27
+ * @aigne/transport bumped to 0.15.13-beta.6
28
+ * @aigne/xai bumped to 0.7.50-beta.6
29
+ * devDependencies
30
+ * @aigne/test-utils bumped to 0.5.57-beta.6
31
+
3
32
  ## [0.10.4-beta.7](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.4-beta.6...aigne-hub-v0.10.4-beta.7) (2025-10-29)
4
33
 
5
34
 
@@ -77,6 +77,7 @@ class AIGNEHubImageModel extends core_1.ImageModel {
77
77
  },
78
78
  });
79
79
  return {
80
+ ...response,
80
81
  images: response.images,
81
82
  usage: {
82
83
  inputTokens: response.usage?.inputTokens ?? 0,
@@ -74,6 +74,7 @@ class AIGNEHubVideoModel extends core_1.VideoModel {
74
74
  },
75
75
  });
76
76
  return {
77
+ ...response,
77
78
  videos: response.videos,
78
79
  usage: {
79
80
  inputTokens: response.usage?.inputTokens ?? 0,
@@ -74,6 +74,7 @@ export class AIGNEHubImageModel extends ImageModel {
74
74
  },
75
75
  });
76
76
  return {
77
+ ...response,
77
78
  images: response.images,
78
79
  usage: {
79
80
  inputTokens: response.usage?.inputTokens ?? 0,
@@ -71,6 +71,7 @@ export class AIGNEHubVideoModel extends VideoModel {
71
71
  },
72
72
  });
73
73
  return {
74
+ ...response,
74
75
  videos: response.videos,
75
76
  usage: {
76
77
  inputTokens: response.usage?.inputTokens ?? 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/aigne-hub",
3
- "version": "0.10.4-beta.7",
3
+ "version": "0.10.4-beta.8",
4
4
  "description": "AIGNE Hub SDK for integrating with Hub AI models",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -39,20 +39,20 @@
39
39
  "https-proxy-agent": "^7.0.6",
40
40
  "ufo": "^1.6.1",
41
41
  "zod": "^3.25.67",
42
- "@aigne/anthropic": "^0.14.4-beta.5",
43
- "@aigne/bedrock": "^0.10.9-beta.5",
44
- "@aigne/core": "^1.65.0-beta.4",
45
- "@aigne/deepseek": "^0.7.50-beta.5",
46
- "@aigne/doubao": "^1.1.4-beta.5",
47
- "@aigne/ideogram": "^0.4.4-beta.5",
48
- "@aigne/gemini": "^0.14.4-beta.7",
49
- "@aigne/ollama": "^0.7.50-beta.5",
50
- "@aigne/open-router": "^0.7.50-beta.5",
51
- "@aigne/openai": "^0.16.4-beta.5",
52
- "@aigne/poe": "^1.0.30-beta.5",
42
+ "@aigne/anthropic": "^0.14.4-beta.6",
43
+ "@aigne/core": "^1.65.0-beta.5",
44
+ "@aigne/bedrock": "^0.10.9-beta.6",
45
+ "@aigne/deepseek": "^0.7.50-beta.6",
46
+ "@aigne/doubao": "^1.1.4-beta.6",
47
+ "@aigne/gemini": "^0.14.4-beta.8",
48
+ "@aigne/ideogram": "^0.4.4-beta.6",
49
+ "@aigne/ollama": "^0.7.50-beta.6",
50
+ "@aigne/open-router": "^0.7.50-beta.6",
51
+ "@aigne/openai": "^0.16.4-beta.6",
53
52
  "@aigne/platform-helpers": "^0.6.3",
54
- "@aigne/xai": "^0.7.50-beta.5",
55
- "@aigne/transport": "^0.15.13-beta.5"
53
+ "@aigne/poe": "^1.0.30-beta.6",
54
+ "@aigne/transport": "^0.15.13-beta.6",
55
+ "@aigne/xai": "^0.7.50-beta.6"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/bun": "^1.2.22",
@@ -61,7 +61,7 @@
61
61
  "npm-run-all": "^4.1.5",
62
62
  "rimraf": "^6.0.1",
63
63
  "typescript": "^5.9.2",
64
- "@aigne/test-utils": "^0.5.57-beta.5"
64
+ "@aigne/test-utils": "^0.5.57-beta.6"
65
65
  },
66
66
  "scripts": {
67
67
  "lint": "tsc --noEmit",