@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 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
 
@@ -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",
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",
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/poe": "^1.0.27",
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.54"
64
+ "@aigne/test-utils": "^0.5.55-beta"
65
65
  },
66
66
  "scripts": {
67
67
  "lint": "tsc --noEmit",