@ai-sdk/openai-compatible 0.0.10 → 0.0.11
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 +10 -0
- package/README.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# @ai-sdk/openai-compatible
|
2
2
|
|
3
|
+
## 0.0.11
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 5ed5e45: chore (config): Use ts-library.json tsconfig for no-UI libs.
|
8
|
+
- 307c247: fix (provider/openai-compatible): Fix docs link to more info.
|
9
|
+
- Updated dependencies [5ed5e45]
|
10
|
+
- @ai-sdk/provider-utils@2.0.5
|
11
|
+
- @ai-sdk/provider@1.0.3
|
12
|
+
|
3
13
|
## 0.0.10
|
4
14
|
|
5
15
|
### Patch Changes
|
package/README.md
CHANGED
@@ -81,4 +81,4 @@ const { text } = await generateText({
|
|
81
81
|
});
|
82
82
|
```
|
83
83
|
|
84
|
-
For more examples, see the [OpenAI Compatible
|
84
|
+
For more examples, see the [OpenAI Compatible Providers](https://sdk.vercel.ai/providers/openai-compatible-providers) documentation.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ai-sdk/openai-compatible",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.11",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"main": "./dist/index.js",
|
@@ -19,8 +19,8 @@
|
|
19
19
|
}
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@ai-sdk/provider": "1.0.
|
23
|
-
"@ai-sdk/provider-utils": "2.0.
|
22
|
+
"@ai-sdk/provider": "1.0.3",
|
23
|
+
"@ai-sdk/provider-utils": "2.0.5"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
26
|
"@types/node": "^18",
|