@aigne/aigne-hub 0.10.4-beta.4 → 0.10.4-beta.6

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,56 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.4-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.4-beta.5...aigne-hub-v0.10.4-beta.6) (2025-10-28)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/anthropic bumped to 0.14.4-beta.4
11
+ * @aigne/bedrock bumped to 0.10.9-beta.4
12
+ * @aigne/core bumped to 1.65.0-beta.3
13
+ * @aigne/deepseek bumped to 0.7.50-beta.4
14
+ * @aigne/doubao bumped to 1.1.4-beta.4
15
+ * @aigne/gemini bumped to 0.14.4-beta.6
16
+ * @aigne/ideogram bumped to 0.4.4-beta.4
17
+ * @aigne/ollama bumped to 0.7.50-beta.4
18
+ * @aigne/open-router bumped to 0.7.50-beta.4
19
+ * @aigne/openai bumped to 0.16.4-beta.4
20
+ * @aigne/poe bumped to 1.0.30-beta.4
21
+ * @aigne/transport bumped to 0.15.13-beta.4
22
+ * @aigne/xai bumped to 0.7.50-beta.4
23
+ * devDependencies
24
+ * @aigne/test-utils bumped to 0.5.57-beta.4
25
+
26
+ ## [0.10.4-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.4-beta.4...aigne-hub-v0.10.4-beta.5) (2025-10-28)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * **core:** added support for URL file type handling, expanding the range of supported file formats ([#671](https://github.com/AIGNE-io/aigne-framework/issues/671)) ([fea4519](https://github.com/AIGNE-io/aigne-framework/commit/fea45197e87cf7b19499c48b41626062824d1355))
32
+
33
+
34
+ ### Dependencies
35
+
36
+ * The following workspace dependencies were updated
37
+ * dependencies
38
+ * @aigne/anthropic bumped to 0.14.4-beta.3
39
+ * @aigne/bedrock bumped to 0.10.9-beta.3
40
+ * @aigne/core bumped to 1.65.0-beta.2
41
+ * @aigne/deepseek bumped to 0.7.50-beta.3
42
+ * @aigne/doubao bumped to 1.1.4-beta.3
43
+ * @aigne/gemini bumped to 0.14.4-beta.5
44
+ * @aigne/ideogram bumped to 0.4.4-beta.3
45
+ * @aigne/ollama bumped to 0.7.50-beta.3
46
+ * @aigne/open-router bumped to 0.7.50-beta.3
47
+ * @aigne/openai bumped to 0.16.4-beta.3
48
+ * @aigne/poe bumped to 1.0.30-beta.3
49
+ * @aigne/transport bumped to 0.15.13-beta.3
50
+ * @aigne/xai bumped to 0.7.50-beta.3
51
+ * devDependencies
52
+ * @aigne/test-utils bumped to 0.5.57-beta.3
53
+
3
54
  ## [0.10.4-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.4-beta.3...aigne-hub-v0.10.4-beta.4) (2025-10-27)
4
55
 
5
56
 
@@ -64,7 +64,7 @@ class AIGNEHubImageModel extends core_1.ImageModel {
64
64
  model: input.modelOptions?.model || (await this.credential).model,
65
65
  },
66
66
  // Shouldn't use `local` output type for remote AIGNE Hub call, client can not access the remote filesystem
67
- outputFileType: "file",
67
+ outputFileType: "url",
68
68
  }, {
69
69
  ...options,
70
70
  streaming: false,
@@ -61,7 +61,7 @@ class AIGNEHubVideoModel extends core_1.VideoModel {
61
61
  ...input,
62
62
  model: model,
63
63
  modelOptions: { ...this.options.modelOptions, ...input.modelOptions, model: model },
64
- outputFileType: "file",
64
+ outputFileType: "url",
65
65
  }, {
66
66
  ...options,
67
67
  streaming: false,
@@ -61,7 +61,7 @@ export class AIGNEHubImageModel extends ImageModel {
61
61
  model: input.modelOptions?.model || (await this.credential).model,
62
62
  },
63
63
  // Shouldn't use `local` output type for remote AIGNE Hub call, client can not access the remote filesystem
64
- outputFileType: "file",
64
+ outputFileType: "url",
65
65
  }, {
66
66
  ...options,
67
67
  streaming: false,
@@ -58,7 +58,7 @@ export class AIGNEHubVideoModel extends VideoModel {
58
58
  ...input,
59
59
  model: model,
60
60
  modelOptions: { ...this.options.modelOptions, ...input.modelOptions, model: model },
61
- outputFileType: "file",
61
+ outputFileType: "url",
62
62
  }, {
63
63
  ...options,
64
64
  streaming: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/aigne-hub",
3
- "version": "0.10.4-beta.4",
3
+ "version": "0.10.4-beta.6",
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.2",
43
- "@aigne/bedrock": "^0.10.9-beta.2",
44
- "@aigne/core": "^1.65.0-beta.1",
45
- "@aigne/doubao": "^1.1.4-beta.2",
46
- "@aigne/deepseek": "^0.7.50-beta.2",
47
- "@aigne/gemini": "^0.14.4-beta.4",
48
- "@aigne/ideogram": "^0.4.4-beta.2",
49
- "@aigne/ollama": "^0.7.50-beta.2",
50
- "@aigne/openai": "^0.16.4-beta.2",
51
- "@aigne/open-router": "^0.7.50-beta.2",
42
+ "@aigne/anthropic": "^0.14.4-beta.4",
43
+ "@aigne/core": "^1.65.0-beta.3",
44
+ "@aigne/bedrock": "^0.10.9-beta.4",
45
+ "@aigne/deepseek": "^0.7.50-beta.4",
46
+ "@aigne/doubao": "^1.1.4-beta.4",
47
+ "@aigne/gemini": "^0.14.4-beta.6",
48
+ "@aigne/ollama": "^0.7.50-beta.4",
49
+ "@aigne/open-router": "^0.7.50-beta.4",
50
+ "@aigne/openai": "^0.16.4-beta.4",
52
51
  "@aigne/platform-helpers": "^0.6.3",
53
- "@aigne/poe": "^1.0.30-beta.2",
54
- "@aigne/transport": "^0.15.13-beta.2",
55
- "@aigne/xai": "^0.7.50-beta.2"
52
+ "@aigne/poe": "^1.0.30-beta.4",
53
+ "@aigne/ideogram": "^0.4.4-beta.4",
54
+ "@aigne/transport": "^0.15.13-beta.4",
55
+ "@aigne/xai": "^0.7.50-beta.4"
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.2"
64
+ "@aigne/test-utils": "^0.5.57-beta.4"
65
65
  },
66
66
  "scripts": {
67
67
  "lint": "tsc --noEmit",