@aigne/open-router 0.7.62-beta.2 → 0.7.62-beta.4

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,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.7.62-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/open-router-v0.7.62-beta.3...open-router-v0.7.62-beta.4) (2025-12-24)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/openai bumped to 0.16.16-beta.4
11
+ * devDependencies
12
+ * @aigne/core bumped to 1.72.0-beta.4
13
+ * @aigne/test-utils bumped to 0.5.69-beta.4
14
+
15
+ ## [0.7.62-beta.3](https://github.com/AIGNE-io/aigne-framework/compare/open-router-v0.7.62-beta.2...open-router-v0.7.62-beta.3) (2025-12-19)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **models:** enable parallel tool calls for open router model ([0aa7d1b](https://github.com/AIGNE-io/aigne-framework/commit/0aa7d1ba30907ee820b793e20e42c4201ca763cc))
21
+
22
+
23
+ ### Dependencies
24
+
25
+ * The following workspace dependencies were updated
26
+ * dependencies
27
+ * @aigne/openai bumped to 0.16.16-beta.3
28
+ * devDependencies
29
+ * @aigne/core bumped to 1.72.0-beta.3
30
+ * @aigne/test-utils bumped to 0.5.69-beta.3
31
+
3
32
  ## [0.7.62-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/open-router-v0.7.62-beta.1...open-router-v0.7.62-beta.2) (2025-12-19)
4
33
 
5
34
 
@@ -18,5 +18,4 @@ import { OpenAIChatModel, type OpenAIChatModelOptions } from "@aigne/openai";
18
18
  export declare class OpenRouterChatModel extends OpenAIChatModel {
19
19
  constructor(options?: OpenAIChatModelOptions);
20
20
  protected apiKeyEnvName: string;
21
- protected supportsParallelToolCalls: boolean;
22
21
  }
@@ -29,6 +29,5 @@ class OpenRouterChatModel extends openai_1.OpenAIChatModel {
29
29
  });
30
30
  }
31
31
  apiKeyEnvName = "OPEN_ROUTER_API_KEY";
32
- supportsParallelToolCalls = false;
33
32
  }
34
33
  exports.OpenRouterChatModel = OpenRouterChatModel;
@@ -18,5 +18,4 @@ import { OpenAIChatModel, type OpenAIChatModelOptions } from "@aigne/openai";
18
18
  export declare class OpenRouterChatModel extends OpenAIChatModel {
19
19
  constructor(options?: OpenAIChatModelOptions);
20
20
  protected apiKeyEnvName: string;
21
- protected supportsParallelToolCalls: boolean;
22
21
  }
@@ -18,5 +18,4 @@ import { OpenAIChatModel, type OpenAIChatModelOptions } from "@aigne/openai";
18
18
  export declare class OpenRouterChatModel extends OpenAIChatModel {
19
19
  constructor(options?: OpenAIChatModelOptions);
20
20
  protected apiKeyEnvName: string;
21
- protected supportsParallelToolCalls: boolean;
22
21
  }
@@ -26,5 +26,4 @@ export class OpenRouterChatModel extends OpenAIChatModel {
26
26
  });
27
27
  }
28
28
  apiKeyEnvName = "OPEN_ROUTER_API_KEY";
29
- supportsParallelToolCalls = false;
30
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/open-router",
3
- "version": "0.7.62-beta.2",
3
+ "version": "0.7.62-beta.4",
4
4
  "description": "AIGNE OpenRouter SDK for accessing multiple AI models through a unified API",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,7 +35,7 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@aigne/openai": "^0.16.16-beta.2"
38
+ "@aigne/openai": "^0.16.16-beta.4"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/bun": "^1.2.22",
@@ -43,8 +43,8 @@
43
43
  "npm-run-all": "^4.1.5",
44
44
  "rimraf": "^6.0.1",
45
45
  "typescript": "^5.9.2",
46
- "@aigne/core": "^1.72.0-beta.2",
47
- "@aigne/test-utils": "^0.5.69-beta.2"
46
+ "@aigne/core": "^1.72.0-beta.4",
47
+ "@aigne/test-utils": "^0.5.69-beta.4"
48
48
  },
49
49
  "scripts": {
50
50
  "lint": "tsc --noEmit",