@aigne/aigne-hub 0.10.14-beta → 0.10.15-beta
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 +51 -0
- package/lib/cjs/index.d.ts +0 -3
- package/lib/cjs/index.js +0 -9
- package/lib/dts/index.d.ts +0 -3
- package/lib/esm/index.d.ts +0 -3
- package/lib/esm/index.js +0 -9
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* 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))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/anthropic bumped to 0.14.15-beta
|
|
16
|
+
* @aigne/bedrock bumped to 0.10.20-beta
|
|
17
|
+
* @aigne/core bumped to 1.71.0-beta
|
|
18
|
+
* @aigne/deepseek bumped to 0.7.61-beta
|
|
19
|
+
* @aigne/doubao bumped to 1.2.5-beta
|
|
20
|
+
* @aigne/gemini bumped to 0.14.15-beta
|
|
21
|
+
* @aigne/ideogram bumped to 0.4.15-beta
|
|
22
|
+
* @aigne/ollama bumped to 0.7.61-beta
|
|
23
|
+
* @aigne/open-router bumped to 0.7.61-beta
|
|
24
|
+
* @aigne/openai bumped to 0.16.15-beta
|
|
25
|
+
* @aigne/poe bumped to 1.1.5-beta
|
|
26
|
+
* @aigne/transport bumped to 0.15.24-beta
|
|
27
|
+
* @aigne/xai bumped to 0.7.61-beta
|
|
28
|
+
* devDependencies
|
|
29
|
+
* @aigne/test-utils bumped to 0.5.68-beta
|
|
30
|
+
|
|
31
|
+
## [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)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Dependencies
|
|
35
|
+
|
|
36
|
+
* The following workspace dependencies were updated
|
|
37
|
+
* dependencies
|
|
38
|
+
* @aigne/anthropic bumped to 0.14.14
|
|
39
|
+
* @aigne/bedrock bumped to 0.10.19
|
|
40
|
+
* @aigne/core bumped to 1.70.1
|
|
41
|
+
* @aigne/deepseek bumped to 0.7.60
|
|
42
|
+
* @aigne/doubao bumped to 1.2.4
|
|
43
|
+
* @aigne/gemini bumped to 0.14.14
|
|
44
|
+
* @aigne/ideogram bumped to 0.4.14
|
|
45
|
+
* @aigne/ollama bumped to 0.7.60
|
|
46
|
+
* @aigne/open-router bumped to 0.7.60
|
|
47
|
+
* @aigne/openai bumped to 0.16.14
|
|
48
|
+
* @aigne/poe bumped to 1.1.4
|
|
49
|
+
* @aigne/transport bumped to 0.15.23
|
|
50
|
+
* @aigne/xai bumped to 0.7.60
|
|
51
|
+
* devDependencies
|
|
52
|
+
* @aigne/test-utils bumped to 0.5.67
|
|
53
|
+
|
|
3
54
|
## [0.10.14-beta](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.13...aigne-hub-v0.10.14-beta) (2025-12-06)
|
|
4
55
|
|
|
5
56
|
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -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
|
}
|
package/lib/dts/index.d.ts
CHANGED
|
@@ -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.d.ts
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.10.15-beta",
|
|
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.
|
|
43
|
-
"@aigne/
|
|
44
|
-
"@aigne/
|
|
45
|
-
"@aigne/
|
|
46
|
-
"@aigne/
|
|
47
|
-
"@aigne/gemini": "^0.14.
|
|
48
|
-
"@aigne/
|
|
49
|
-
"@aigne/
|
|
50
|
-
"@aigne/
|
|
42
|
+
"@aigne/anthropic": "^0.14.15-beta",
|
|
43
|
+
"@aigne/core": "^1.71.0-beta",
|
|
44
|
+
"@aigne/bedrock": "^0.10.20-beta",
|
|
45
|
+
"@aigne/doubao": "^1.2.5-beta",
|
|
46
|
+
"@aigne/deepseek": "^0.7.61-beta",
|
|
47
|
+
"@aigne/gemini": "^0.14.15-beta",
|
|
48
|
+
"@aigne/ideogram": "^0.4.15-beta",
|
|
49
|
+
"@aigne/ollama": "^0.7.61-beta",
|
|
50
|
+
"@aigne/open-router": "^0.7.61-beta",
|
|
51
|
+
"@aigne/poe": "^1.1.5-beta",
|
|
51
52
|
"@aigne/platform-helpers": "^0.6.5",
|
|
52
|
-
"@aigne/
|
|
53
|
-
"@aigne/
|
|
54
|
-
"@aigne/
|
|
55
|
-
"@aigne/ollama": "^0.7.60-beta"
|
|
53
|
+
"@aigne/openai": "^0.16.15-beta",
|
|
54
|
+
"@aigne/xai": "^0.7.61-beta",
|
|
55
|
+
"@aigne/transport": "^0.15.24-beta"
|
|
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.
|
|
64
|
+
"@aigne/test-utils": "^0.5.68-beta"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"lint": "tsc --noEmit",
|