@aigne/open-router 0.7.14 → 0.7.16
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 +24 -0
- package/README.md +6 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.16](https://github.com/AIGNE-io/aigne-framework/compare/open-router-v0.7.15...open-router-v0.7.16) (2025-08-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @aigne/openai bumped to 0.10.16
|
|
11
|
+
* devDependencies
|
|
12
|
+
* @aigne/core bumped to 1.47.0
|
|
13
|
+
* @aigne/test-utils bumped to 0.5.24
|
|
14
|
+
|
|
15
|
+
## [0.7.15](https://github.com/AIGNE-io/aigne-framework/compare/open-router-v0.7.14...open-router-v0.7.15) (2025-08-08)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
* The following workspace dependencies were updated
|
|
21
|
+
* dependencies
|
|
22
|
+
* @aigne/openai bumped to 0.10.15
|
|
23
|
+
* devDependencies
|
|
24
|
+
* @aigne/core bumped to 1.46.1
|
|
25
|
+
* @aigne/test-utils bumped to 0.5.23
|
|
26
|
+
|
|
3
27
|
## [0.7.14](https://github.com/AIGNE-io/aigne-framework/compare/open-router-v0.7.13...open-router-v0.7.14) (2025-08-06)
|
|
4
28
|
|
|
5
29
|
|
package/README.md
CHANGED
|
@@ -20,6 +20,12 @@ AIGNE OpenRouter SDK for accessing multiple AI models through a unified API with
|
|
|
20
20
|
|
|
21
21
|
`@aigne/open-router` provides a seamless integration between the AIGNE Framework and OpenRouter's unified API for accessing a wide variety of AI models. This package enables developers to easily leverage models from multiple providers (including OpenAI, Anthropic, Google, and more) through a single consistent interface, allowing for flexible model selection and fallback options.
|
|
22
22
|
|
|
23
|
+
<picture>
|
|
24
|
+
<source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/assets/aigne-openrouter-dark.png" media="(prefers-color-scheme: dark)">
|
|
25
|
+
<source srcset="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/assets/aigne-openrouter.png" media="(prefers-color-scheme: light)">
|
|
26
|
+
<img src="https://raw.githubusercontent.com/AIGNE-io/aigne-framework/main/aigne-openrouter.png" alt="AIGNE Arch" />
|
|
27
|
+
</picture>
|
|
28
|
+
|
|
23
29
|
## Features
|
|
24
30
|
|
|
25
31
|
* **OpenRouter API Integration**: Direct connection to OpenRouter's API services
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/open-router",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.16",
|
|
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.10.
|
|
38
|
+
"@aigne/openai": "^0.10.16"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "^1.2.18",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"npm-run-all": "^4.1.5",
|
|
44
44
|
"rimraf": "^6.0.1",
|
|
45
45
|
"typescript": "^5.8.3",
|
|
46
|
-
"@aigne/core": "^1.
|
|
47
|
-
"@aigne/test-utils": "^0.5.
|
|
46
|
+
"@aigne/core": "^1.47.0",
|
|
47
|
+
"@aigne/test-utils": "^0.5.24"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"lint": "tsc --noEmit",
|