@ai-sdk/openai 3.0.21 → 3.0.22

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,11 @@
1
1
  # @ai-sdk/openai
2
2
 
3
+ ## 3.0.22
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+
3
9
  ## 3.0.21
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -11,6 +11,14 @@ The OpenAI provider is available in the `@ai-sdk/openai` module. You can install
11
11
  npm i @ai-sdk/openai
12
12
  ```
13
13
 
14
+ ## Skill for Coding Agents
15
+
16
+ If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
17
+
18
+ ```shell
19
+ npx skills add vercel/ai
20
+ ```
21
+
14
22
  ## Provider Instance
15
23
 
16
24
  You can import the default provider instance `openai` from `@ai-sdk/openai`:
package/dist/index.js CHANGED
@@ -5786,7 +5786,7 @@ var OpenAITranscriptionModel = class {
5786
5786
  };
5787
5787
 
5788
5788
  // src/version.ts
5789
- var VERSION = true ? "3.0.21" : "0.0.0-test";
5789
+ var VERSION = true ? "3.0.22" : "0.0.0-test";
5790
5790
 
5791
5791
  // src/openai-provider.ts
5792
5792
  function createOpenAI(options = {}) {
package/dist/index.mjs CHANGED
@@ -5868,7 +5868,7 @@ var OpenAITranscriptionModel = class {
5868
5868
  };
5869
5869
 
5870
5870
  // src/version.ts
5871
- var VERSION = true ? "3.0.21" : "0.0.0-test";
5871
+ var VERSION = true ? "3.0.22" : "0.0.0-test";
5872
5872
 
5873
5873
  // src/openai-provider.ts
5874
5874
  function createOpenAI(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/openai",
3
- "version": "3.0.21",
3
+ "version": "3.0.22",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",