@aigne/aigne-hub 0.10.1 → 0.10.2-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 +28 -0
- package/lib/cjs/utils/model.d.ts +2 -2
- package/lib/dts/utils/model.d.ts +2 -2
- package/lib/esm/utils/model.d.ts +2 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.2-beta](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.1...aigne-hub-v0.10.2-beta) (2025-10-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* standardize URL parameter naming from url to baseURL ([#593](https://github.com/AIGNE-io/aigne-framework/issues/593)) ([47efd4a](https://github.com/AIGNE-io/aigne-framework/commit/47efd4aad7130356a0c0bdf905acd8bc50453d26))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/anthropic bumped to 0.14.2-beta
|
|
16
|
+
* @aigne/bedrock bumped to 0.10.7-beta
|
|
17
|
+
* @aigne/core bumped to 1.63.0-beta
|
|
18
|
+
* @aigne/deepseek bumped to 0.7.48-beta
|
|
19
|
+
* @aigne/doubao bumped to 1.1.2-beta
|
|
20
|
+
* @aigne/gemini bumped to 0.14.2-beta
|
|
21
|
+
* @aigne/ideogram bumped to 0.4.2-beta
|
|
22
|
+
* @aigne/ollama bumped to 0.7.48-beta
|
|
23
|
+
* @aigne/open-router bumped to 0.7.48-beta
|
|
24
|
+
* @aigne/openai bumped to 0.16.2-beta
|
|
25
|
+
* @aigne/poe bumped to 1.0.28-beta
|
|
26
|
+
* @aigne/transport bumped to 0.15.11-beta
|
|
27
|
+
* @aigne/xai bumped to 0.7.48-beta
|
|
28
|
+
* devDependencies
|
|
29
|
+
* @aigne/test-utils bumped to 0.5.55-beta
|
|
30
|
+
|
|
3
31
|
## [0.10.1](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.1-beta.7...aigne-hub-v0.10.1) (2025-10-04)
|
|
4
32
|
|
|
5
33
|
|
package/lib/cjs/utils/model.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface LoadableModel {
|
|
|
6
6
|
model?: string;
|
|
7
7
|
modelOptions?: ChatModelInputOptions;
|
|
8
8
|
apiKey?: string;
|
|
9
|
-
|
|
9
|
+
baseURL?: string;
|
|
10
10
|
}) => ChatModel;
|
|
11
11
|
}
|
|
12
12
|
export declare function availableModels(): LoadableModel[];
|
|
@@ -15,7 +15,7 @@ export interface LoadableImageModel {
|
|
|
15
15
|
apiKeyEnvName: string;
|
|
16
16
|
create: (options: {
|
|
17
17
|
apiKey?: string;
|
|
18
|
-
|
|
18
|
+
baseURL?: string;
|
|
19
19
|
model?: string;
|
|
20
20
|
modelOptions?: ImageModelInputOptions;
|
|
21
21
|
}) => ImageModel;
|
package/lib/dts/utils/model.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface LoadableModel {
|
|
|
6
6
|
model?: string;
|
|
7
7
|
modelOptions?: ChatModelInputOptions;
|
|
8
8
|
apiKey?: string;
|
|
9
|
-
|
|
9
|
+
baseURL?: string;
|
|
10
10
|
}) => ChatModel;
|
|
11
11
|
}
|
|
12
12
|
export declare function availableModels(): LoadableModel[];
|
|
@@ -15,7 +15,7 @@ export interface LoadableImageModel {
|
|
|
15
15
|
apiKeyEnvName: string;
|
|
16
16
|
create: (options: {
|
|
17
17
|
apiKey?: string;
|
|
18
|
-
|
|
18
|
+
baseURL?: string;
|
|
19
19
|
model?: string;
|
|
20
20
|
modelOptions?: ImageModelInputOptions;
|
|
21
21
|
}) => ImageModel;
|
package/lib/esm/utils/model.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface LoadableModel {
|
|
|
6
6
|
model?: string;
|
|
7
7
|
modelOptions?: ChatModelInputOptions;
|
|
8
8
|
apiKey?: string;
|
|
9
|
-
|
|
9
|
+
baseURL?: string;
|
|
10
10
|
}) => ChatModel;
|
|
11
11
|
}
|
|
12
12
|
export declare function availableModels(): LoadableModel[];
|
|
@@ -15,7 +15,7 @@ export interface LoadableImageModel {
|
|
|
15
15
|
apiKeyEnvName: string;
|
|
16
16
|
create: (options: {
|
|
17
17
|
apiKey?: string;
|
|
18
|
-
|
|
18
|
+
baseURL?: string;
|
|
19
19
|
model?: string;
|
|
20
20
|
modelOptions?: ImageModelInputOptions;
|
|
21
21
|
}) => ImageModel;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/aigne-hub",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2-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/bedrock": "^0.10.
|
|
44
|
-
"@aigne/
|
|
45
|
-
"@aigne/
|
|
46
|
-
"@aigne/
|
|
47
|
-
"@aigne/gemini": "^0.14.
|
|
48
|
-
"@aigne/
|
|
49
|
-
"@aigne/
|
|
50
|
-
"@aigne/
|
|
51
|
-
"@aigne/openai": "^0.16.
|
|
42
|
+
"@aigne/anthropic": "^0.14.2-beta",
|
|
43
|
+
"@aigne/bedrock": "^0.10.7-beta",
|
|
44
|
+
"@aigne/deepseek": "^0.7.48-beta",
|
|
45
|
+
"@aigne/core": "^1.63.0-beta",
|
|
46
|
+
"@aigne/doubao": "^1.1.2-beta",
|
|
47
|
+
"@aigne/gemini": "^0.14.2-beta",
|
|
48
|
+
"@aigne/ideogram": "^0.4.2-beta",
|
|
49
|
+
"@aigne/open-router": "^0.7.48-beta",
|
|
50
|
+
"@aigne/ollama": "^0.7.48-beta",
|
|
51
|
+
"@aigne/openai": "^0.16.2-beta",
|
|
52
|
+
"@aigne/poe": "^1.0.28-beta",
|
|
53
|
+
"@aigne/transport": "^0.15.11-beta",
|
|
52
54
|
"@aigne/platform-helpers": "^0.6.3",
|
|
53
|
-
"@aigne/
|
|
54
|
-
"@aigne/xai": "^0.7.47",
|
|
55
|
-
"@aigne/transport": "^0.15.10"
|
|
55
|
+
"@aigne/xai": "^0.7.48-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.55-beta"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"lint": "tsc --noEmit",
|