@aigne/aigne-hub 0.10.1 → 0.10.2-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.2-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.10.2-beta...aigne-hub-v0.10.2-beta.1) (2025-10-09)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/anthropic bumped to 0.14.2-beta.1
11
+ * @aigne/bedrock bumped to 0.10.7-beta.1
12
+ * @aigne/core bumped to 1.63.0-beta.1
13
+ * @aigne/deepseek bumped to 0.7.48-beta.1
14
+ * @aigne/doubao bumped to 1.1.2-beta.1
15
+ * @aigne/gemini bumped to 0.14.2-beta.1
16
+ * @aigne/ideogram bumped to 0.4.2-beta.1
17
+ * @aigne/ollama bumped to 0.7.48-beta.1
18
+ * @aigne/open-router bumped to 0.7.48-beta.1
19
+ * @aigne/openai bumped to 0.16.2-beta.1
20
+ * @aigne/poe bumped to 1.0.28-beta.1
21
+ * @aigne/transport bumped to 0.15.11-beta.1
22
+ * @aigne/xai bumped to 0.7.48-beta.1
23
+ * devDependencies
24
+ * @aigne/test-utils bumped to 0.5.55-beta.1
25
+
26
+ ## [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)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * 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))
32
+
33
+
34
+ ### Dependencies
35
+
36
+ * The following workspace dependencies were updated
37
+ * dependencies
38
+ * @aigne/anthropic bumped to 0.14.2-beta
39
+ * @aigne/bedrock bumped to 0.10.7-beta
40
+ * @aigne/core bumped to 1.63.0-beta
41
+ * @aigne/deepseek bumped to 0.7.48-beta
42
+ * @aigne/doubao bumped to 1.1.2-beta
43
+ * @aigne/gemini bumped to 0.14.2-beta
44
+ * @aigne/ideogram bumped to 0.4.2-beta
45
+ * @aigne/ollama bumped to 0.7.48-beta
46
+ * @aigne/open-router bumped to 0.7.48-beta
47
+ * @aigne/openai bumped to 0.16.2-beta
48
+ * @aigne/poe bumped to 1.0.28-beta
49
+ * @aigne/transport bumped to 0.15.11-beta
50
+ * @aigne/xai bumped to 0.7.48-beta
51
+ * devDependencies
52
+ * @aigne/test-utils bumped to 0.5.55-beta
53
+
3
54
  ## [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
55
 
5
56
 
@@ -6,7 +6,7 @@ export interface LoadableModel {
6
6
  model?: string;
7
7
  modelOptions?: ChatModelInputOptions;
8
8
  apiKey?: string;
9
- url?: string;
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
- url?: string;
18
+ baseURL?: string;
19
19
  model?: string;
20
20
  modelOptions?: ImageModelInputOptions;
21
21
  }) => ImageModel;
@@ -6,7 +6,7 @@ export interface LoadableModel {
6
6
  model?: string;
7
7
  modelOptions?: ChatModelInputOptions;
8
8
  apiKey?: string;
9
- url?: string;
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
- url?: string;
18
+ baseURL?: string;
19
19
  model?: string;
20
20
  modelOptions?: ImageModelInputOptions;
21
21
  }) => ImageModel;
@@ -6,7 +6,7 @@ export interface LoadableModel {
6
6
  model?: string;
7
7
  modelOptions?: ChatModelInputOptions;
8
8
  apiKey?: string;
9
- url?: string;
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
- url?: string;
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.1",
3
+ "version": "0.10.2-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.1",
43
- "@aigne/bedrock": "^0.10.6",
44
- "@aigne/core": "^1.62.0",
45
- "@aigne/doubao": "^1.1.1",
46
- "@aigne/deepseek": "^0.7.47",
47
- "@aigne/gemini": "^0.14.1",
48
- "@aigne/ollama": "^0.7.47",
49
- "@aigne/ideogram": "^0.4.1",
50
- "@aigne/open-router": "^0.7.47",
51
- "@aigne/openai": "^0.16.1",
42
+ "@aigne/anthropic": "^0.14.2-beta.1",
43
+ "@aigne/bedrock": "^0.10.7-beta.1",
44
+ "@aigne/core": "^1.63.0-beta.1",
45
+ "@aigne/deepseek": "^0.7.48-beta.1",
46
+ "@aigne/doubao": "^1.1.2-beta.1",
47
+ "@aigne/ideogram": "^0.4.2-beta.1",
48
+ "@aigne/ollama": "^0.7.48-beta.1",
49
+ "@aigne/gemini": "^0.14.2-beta.1",
50
+ "@aigne/open-router": "^0.7.48-beta.1",
52
51
  "@aigne/platform-helpers": "^0.6.3",
53
- "@aigne/poe": "^1.0.27",
54
- "@aigne/xai": "^0.7.47",
55
- "@aigne/transport": "^0.15.10"
52
+ "@aigne/poe": "^1.0.28-beta.1",
53
+ "@aigne/transport": "^0.15.11-beta.1",
54
+ "@aigne/openai": "^0.16.2-beta.1",
55
+ "@aigne/xai": "^0.7.48-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.54"
64
+ "@aigne/test-utils": "^0.5.55-beta.1"
65
65
  },
66
66
  "scripts": {
67
67
  "lint": "tsc --noEmit",