@ai-sdk/openai 4.0.0-beta.25 → 4.0.0-beta.27
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 +17 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/skills/openai-skills.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @ai-sdk/openai
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [176466a]
|
|
8
|
+
- @ai-sdk/provider@4.0.0-beta.10
|
|
9
|
+
- @ai-sdk/provider-utils@5.0.0-beta.16
|
|
10
|
+
|
|
11
|
+
## 4.0.0-beta.26
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- e311194: feat(ai): allow passing provider instance to `uploadFile` and `uploadSkill` as shorthand
|
|
16
|
+
- Updated dependencies [e311194]
|
|
17
|
+
- @ai-sdk/provider@4.0.0-beta.9
|
|
18
|
+
- @ai-sdk/provider-utils@5.0.0-beta.15
|
|
19
|
+
|
|
3
20
|
## 4.0.0-beta.25
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -6900,7 +6900,7 @@ var OpenAISkills = class {
|
|
|
6900
6900
|
get provider() {
|
|
6901
6901
|
return this.config.provider;
|
|
6902
6902
|
}
|
|
6903
|
-
async
|
|
6903
|
+
async uploadSkill(params) {
|
|
6904
6904
|
const warnings = [];
|
|
6905
6905
|
if (params.displayTitle != null) {
|
|
6906
6906
|
warnings.push({
|
|
@@ -6941,7 +6941,7 @@ var OpenAISkills = class {
|
|
|
6941
6941
|
};
|
|
6942
6942
|
|
|
6943
6943
|
// src/version.ts
|
|
6944
|
-
var VERSION = true ? "4.0.0-beta.
|
|
6944
|
+
var VERSION = true ? "4.0.0-beta.27" : "0.0.0-test";
|
|
6945
6945
|
|
|
6946
6946
|
// src/openai-provider.ts
|
|
6947
6947
|
function createOpenAI(options = {}) {
|