@aigne/aigne-hub 0.10.14 → 0.10.15-beta.1

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.15-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.15-beta...aigne-hub-v0.10.15-beta.1) (2025-12-08)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/anthropic bumped to 0.14.15-beta.1
11
+ * @aigne/bedrock bumped to 0.10.20-beta.1
12
+ * @aigne/core bumped to 1.71.0-beta.1
13
+ * @aigne/deepseek bumped to 0.7.61-beta.1
14
+ * @aigne/doubao bumped to 1.2.5-beta.1
15
+ * @aigne/gemini bumped to 0.14.15-beta.1
16
+ * @aigne/ideogram bumped to 0.4.15-beta.1
17
+ * @aigne/ollama bumped to 0.7.61-beta.1
18
+ * @aigne/open-router bumped to 0.7.61-beta.1
19
+ * @aigne/openai bumped to 0.16.15-beta.1
20
+ * @aigne/poe bumped to 1.1.5-beta.1
21
+ * @aigne/transport bumped to 0.15.24-beta.1
22
+ * @aigne/xai bumped to 0.7.61-beta.1
23
+ * devDependencies
24
+ * @aigne/test-utils bumped to 0.5.68-beta.1
25
+
26
+ ## [0.10.15-beta](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.14...aigne-hub-v0.10.15-beta) (2025-12-07)
27
+
28
+
29
+ ### Features
30
+
31
+ * support define agent by third library & orchestrator agent refactor ([#799](https://github.com/AIGNE-io/aigne-framework/issues/799)) ([7264b11](https://github.com/AIGNE-io/aigne-framework/commit/7264b11ab6eed787e928367f09aa08d254968d40))
32
+
33
+
34
+ ### Dependencies
35
+
36
+ * The following workspace dependencies were updated
37
+ * dependencies
38
+ * @aigne/anthropic bumped to 0.14.15-beta
39
+ * @aigne/bedrock bumped to 0.10.20-beta
40
+ * @aigne/core bumped to 1.71.0-beta
41
+ * @aigne/deepseek bumped to 0.7.61-beta
42
+ * @aigne/doubao bumped to 1.2.5-beta
43
+ * @aigne/gemini bumped to 0.14.15-beta
44
+ * @aigne/ideogram bumped to 0.4.15-beta
45
+ * @aigne/ollama bumped to 0.7.61-beta
46
+ * @aigne/open-router bumped to 0.7.61-beta
47
+ * @aigne/openai bumped to 0.16.15-beta
48
+ * @aigne/poe bumped to 1.1.5-beta
49
+ * @aigne/transport bumped to 0.15.24-beta
50
+ * @aigne/xai bumped to 0.7.61-beta
51
+ * devDependencies
52
+ * @aigne/test-utils bumped to 0.5.68-beta
53
+
3
54
  ## [0.10.14](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.14-beta...aigne-hub-v0.10.14) (2025-12-06)
4
55
 
5
56
 
@@ -7,7 +7,6 @@ export * from "./utils/find-provider.js";
7
7
  export * from "./utils/model.js";
8
8
  export declare class AIGNEHubChatModel extends ChatModel {
9
9
  options: AIGNEHubChatModelOptions;
10
- static load(options: AIGNEHubChatModelOptions): Promise<AIGNEHubChatModel>;
11
10
  static models(): Promise<{
12
11
  type: string;
13
12
  model: string;
@@ -43,7 +42,6 @@ export declare class AIGNEHubChatModel extends ChatModel {
43
42
  }
44
43
  export declare class AIGNEHubImageModel extends ImageModel {
45
44
  options: AIGNEHubImageModelOptions;
46
- static load(options: AIGNEHubImageModelOptions): Promise<AIGNEHubImageModel>;
47
45
  static models(): Promise<{
48
46
  type: string;
49
47
  model: string;
@@ -79,7 +77,6 @@ export declare class AIGNEHubImageModel extends ImageModel {
79
77
  }
80
78
  export declare class AIGNEHubVideoModel extends VideoModel {
81
79
  options: AIGNEHubVideoModelOptions;
82
- static load(options: AIGNEHubVideoModelOptions): Promise<AIGNEHubVideoModel>;
83
80
  static models(): Promise<{
84
81
  type: string;
85
82
  model: string;
package/lib/cjs/index.js CHANGED
@@ -24,9 +24,6 @@ __exportStar(require("./utils/find-provider.js"), exports);
24
24
  __exportStar(require("./utils/model.js"), exports);
25
25
  class AIGNEHubChatModel extends core_1.ChatModel {
26
26
  options;
27
- static async load(options) {
28
- return new AIGNEHubChatModel(options);
29
- }
30
27
  static async models() {
31
28
  return (0, hub_js_1.getModels)({ type: "chat" });
32
29
  }
@@ -64,9 +61,6 @@ class AIGNEHubChatModel extends core_1.ChatModel {
64
61
  exports.AIGNEHubChatModel = AIGNEHubChatModel;
65
62
  class AIGNEHubImageModel extends core_1.ImageModel {
66
63
  options;
67
- static async load(options) {
68
- return new AIGNEHubImageModel(options);
69
- }
70
64
  static async models() {
71
65
  return (0, hub_js_1.getModels)({ type: "image" });
72
66
  }
@@ -104,9 +98,6 @@ class AIGNEHubImageModel extends core_1.ImageModel {
104
98
  exports.AIGNEHubImageModel = AIGNEHubImageModel;
105
99
  class AIGNEHubVideoModel extends core_1.VideoModel {
106
100
  options;
107
- static async load(options) {
108
- return new AIGNEHubVideoModel(options);
109
- }
110
101
  static async models() {
111
102
  return (0, hub_js_1.getModels)({ type: "video" });
112
103
  }
@@ -7,7 +7,6 @@ export * from "./utils/find-provider.js";
7
7
  export * from "./utils/model.js";
8
8
  export declare class AIGNEHubChatModel extends ChatModel {
9
9
  options: AIGNEHubChatModelOptions;
10
- static load(options: AIGNEHubChatModelOptions): Promise<AIGNEHubChatModel>;
11
10
  static models(): Promise<{
12
11
  type: string;
13
12
  model: string;
@@ -43,7 +42,6 @@ export declare class AIGNEHubChatModel extends ChatModel {
43
42
  }
44
43
  export declare class AIGNEHubImageModel extends ImageModel {
45
44
  options: AIGNEHubImageModelOptions;
46
- static load(options: AIGNEHubImageModelOptions): Promise<AIGNEHubImageModel>;
47
45
  static models(): Promise<{
48
46
  type: string;
49
47
  model: string;
@@ -79,7 +77,6 @@ export declare class AIGNEHubImageModel extends ImageModel {
79
77
  }
80
78
  export declare class AIGNEHubVideoModel extends VideoModel {
81
79
  options: AIGNEHubVideoModelOptions;
82
- static load(options: AIGNEHubVideoModelOptions): Promise<AIGNEHubVideoModel>;
83
80
  static models(): Promise<{
84
81
  type: string;
85
82
  model: string;
@@ -7,7 +7,6 @@ export * from "./utils/find-provider.js";
7
7
  export * from "./utils/model.js";
8
8
  export declare class AIGNEHubChatModel extends ChatModel {
9
9
  options: AIGNEHubChatModelOptions;
10
- static load(options: AIGNEHubChatModelOptions): Promise<AIGNEHubChatModel>;
11
10
  static models(): Promise<{
12
11
  type: string;
13
12
  model: string;
@@ -43,7 +42,6 @@ export declare class AIGNEHubChatModel extends ChatModel {
43
42
  }
44
43
  export declare class AIGNEHubImageModel extends ImageModel {
45
44
  options: AIGNEHubImageModelOptions;
46
- static load(options: AIGNEHubImageModelOptions): Promise<AIGNEHubImageModel>;
47
45
  static models(): Promise<{
48
46
  type: string;
49
47
  model: string;
@@ -79,7 +77,6 @@ export declare class AIGNEHubImageModel extends ImageModel {
79
77
  }
80
78
  export declare class AIGNEHubVideoModel extends VideoModel {
81
79
  options: AIGNEHubVideoModelOptions;
82
- static load(options: AIGNEHubVideoModelOptions): Promise<AIGNEHubVideoModel>;
83
80
  static models(): Promise<{
84
81
  type: string;
85
82
  model: string;
package/lib/esm/index.js CHANGED
@@ -7,9 +7,6 @@ export * from "./utils/find-provider.js";
7
7
  export * from "./utils/model.js";
8
8
  export class AIGNEHubChatModel extends ChatModel {
9
9
  options;
10
- static async load(options) {
11
- return new AIGNEHubChatModel(options);
12
- }
13
10
  static async models() {
14
11
  return getModels({ type: "chat" });
15
12
  }
@@ -46,9 +43,6 @@ export class AIGNEHubChatModel extends ChatModel {
46
43
  }
47
44
  export class AIGNEHubImageModel extends ImageModel {
48
45
  options;
49
- static async load(options) {
50
- return new AIGNEHubImageModel(options);
51
- }
52
46
  static async models() {
53
47
  return getModels({ type: "image" });
54
48
  }
@@ -85,9 +79,6 @@ export class AIGNEHubImageModel extends ImageModel {
85
79
  }
86
80
  export class AIGNEHubVideoModel extends VideoModel {
87
81
  options;
88
- static async load(options) {
89
- return new AIGNEHubVideoModel(options);
90
- }
91
82
  static async models() {
92
83
  return getModels({ type: "video" });
93
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/aigne-hub",
3
- "version": "0.10.14",
3
+ "version": "0.10.15-beta.1",
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.14",
43
- "@aigne/bedrock": "^0.10.19",
44
- "@aigne/core": "^1.70.1",
45
- "@aigne/deepseek": "^0.7.60",
46
- "@aigne/doubao": "^1.2.4",
47
- "@aigne/gemini": "^0.14.14",
48
- "@aigne/ollama": "^0.7.60",
49
- "@aigne/ideogram": "^0.4.14",
50
- "@aigne/open-router": "^0.7.60",
42
+ "@aigne/anthropic": "^0.14.15-beta.1",
43
+ "@aigne/core": "^1.71.0-beta.1",
44
+ "@aigne/deepseek": "^0.7.61-beta.1",
45
+ "@aigne/doubao": "^1.2.5-beta.1",
46
+ "@aigne/bedrock": "^0.10.20-beta.1",
47
+ "@aigne/gemini": "^0.14.15-beta.1",
48
+ "@aigne/ideogram": "^0.4.15-beta.1",
49
+ "@aigne/openai": "^0.16.15-beta.1",
50
+ "@aigne/open-router": "^0.7.61-beta.1",
51
+ "@aigne/ollama": "^0.7.61-beta.1",
51
52
  "@aigne/platform-helpers": "^0.6.5",
52
- "@aigne/openai": "^0.16.14",
53
- "@aigne/poe": "^1.1.4",
54
- "@aigne/xai": "^0.7.60",
55
- "@aigne/transport": "^0.15.23"
53
+ "@aigne/transport": "^0.15.24-beta.1",
54
+ "@aigne/poe": "^1.1.5-beta.1",
55
+ "@aigne/xai": "^0.7.61-beta.1"
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.67"
64
+ "@aigne/test-utils": "^0.5.68-beta.1"
65
65
  },
66
66
  "scripts": {
67
67
  "lint": "tsc --noEmit",