@aigne/aigne-hub 0.2.1 → 0.2.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +4 -4
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.2](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.2.1...aigne-hub-v0.2.2) (2025-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **observability:** uniq index on insert and perf on trace query ([#268](https://github.com/AIGNE-io/aigne-framework/issues/268)) ([bd02d2e](https://github.com/AIGNE-io/aigne-framework/commit/bd02d2ef4dadc3df7e4806746fede2faa5cc50bb))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/anthropic bumped to 0.10.2
16
+ * @aigne/bedrock bumped to 0.8.6
17
+ * @aigne/core bumped to 1.39.0
18
+ * @aigne/deepseek bumped to 0.7.6
19
+ * @aigne/default-memory bumped to 1.0.6
20
+ * @aigne/gemini bumped to 0.8.6
21
+ * @aigne/ollama bumped to 0.7.6
22
+ * @aigne/open-router bumped to 0.7.6
23
+ * @aigne/openai bumped to 0.10.6
24
+ * @aigne/transport bumped to 0.10.6
25
+ * @aigne/xai bumped to 0.7.6
26
+ * devDependencies
27
+ * @aigne/openai bumped to 0.10.6
28
+ * @aigne/test-utils bumped to 0.5.14
29
+
3
30
  ## [0.2.1](https://github.com/AIGNE-io/aigne-framework/compare/aigne-hub-v0.2.0...aigne-hub-v0.2.1) (2025-07-24)
4
31
 
5
32
 
package/README.md CHANGED
@@ -58,8 +58,8 @@ pnpm add @aigne/aigne-hub @aigne/core
58
58
  import { AIGNEHubChatModel } from "@aigne/aigne-hub";
59
59
 
60
60
  const model = new AIGNEHubChatModel({
61
- url: "https://your-aigne-hub-instance/ai-kit/",
62
- accessKey: "your-access-key-id",
61
+ url: "https://your-aigne-hub-instance/ai-kit",
62
+ accessKey: "your-access-key-secret",
63
63
  model: "openai/gpt-4o-mini",
64
64
  });
65
65
 
@@ -84,8 +84,8 @@ console.log(result);
84
84
  import { AIGNEHubChatModel } from "@aigne/aigne-hub";
85
85
 
86
86
  const model = new AIGNEHubChatModel({
87
- url: "https://your-aigne-hub-instance/ai-kit/",
88
- accessKey: "your-access-key-id",
87
+ url: "https://your-aigne-hub-instance/ai-kit",
88
+ accessKey: "your-access-key-secret",
89
89
  model: "openai/gpt-4o-mini",
90
90
  });
91
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/aigne-hub",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "AIGNE Hub SDK for integrating with Hub AI models",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -27,17 +27,17 @@
27
27
  "dependencies": {
28
28
  "ufo": "^1.6.1",
29
29
  "zod": "^3.25.67",
30
- "@aigne/anthropic": "^0.10.1",
31
- "@aigne/core": "^1.38.1",
32
- "@aigne/bedrock": "^0.8.5",
33
- "@aigne/deepseek": "^0.7.5",
34
- "@aigne/default-memory": "^1.0.5",
35
- "@aigne/ollama": "^0.7.5",
36
- "@aigne/open-router": "^0.7.5",
37
- "@aigne/openai": "^0.10.5",
38
- "@aigne/transport": "^0.10.5",
39
- "@aigne/gemini": "^0.8.5",
40
- "@aigne/xai": "^0.7.5"
30
+ "@aigne/anthropic": "^0.10.2",
31
+ "@aigne/bedrock": "^0.8.6",
32
+ "@aigne/core": "^1.39.0",
33
+ "@aigne/deepseek": "^0.7.6",
34
+ "@aigne/gemini": "^0.8.6",
35
+ "@aigne/default-memory": "^1.0.6",
36
+ "@aigne/ollama": "^0.7.6",
37
+ "@aigne/open-router": "^0.7.6",
38
+ "@aigne/openai": "^0.10.6",
39
+ "@aigne/transport": "^0.10.6",
40
+ "@aigne/xai": "^0.7.6"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/bun": "^1.2.18",
@@ -46,8 +46,8 @@
46
46
  "npm-run-all": "^4.1.5",
47
47
  "rimraf": "^6.0.1",
48
48
  "typescript": "^5.8.3",
49
- "@aigne/openai": "^0.10.5",
50
- "@aigne/test-utils": "^0.5.13"
49
+ "@aigne/test-utils": "^0.5.14",
50
+ "@aigne/openai": "^0.10.6"
51
51
  },
52
52
  "scripts": {
53
53
  "lint": "tsc --noEmit",