@ai-sdk/azure 3.0.22 → 3.0.23

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,13 @@
1
1
  # @ai-sdk/azure
2
2
 
3
+ ## 3.0.23
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+ - Updated dependencies [1524271]
9
+ - @ai-sdk/openai@3.0.22
10
+
3
11
  ## 3.0.22
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -10,6 +10,14 @@ The Azure provider is available in the `@ai-sdk/azure` module. You can install i
10
10
  npm i @ai-sdk/azure
11
11
  ```
12
12
 
13
+ ## Skill for Coding Agents
14
+
15
+ If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
16
+
17
+ ```shell
18
+ npx skills add vercel/ai
19
+ ```
20
+
13
21
  ## Provider Instance
14
22
 
15
23
  You can import the default provider instance `azure` from `@ai-sdk/azure`:
package/dist/index.js CHANGED
@@ -40,7 +40,7 @@ var azureOpenaiTools = {
40
40
  };
41
41
 
42
42
  // src/version.ts
43
- var VERSION = true ? "3.0.22" : "0.0.0-test";
43
+ var VERSION = true ? "3.0.23" : "0.0.0-test";
44
44
 
45
45
  // src/azure-openai-provider.ts
46
46
  function createAzure(options = {}) {
package/dist/index.mjs CHANGED
@@ -29,7 +29,7 @@ var azureOpenaiTools = {
29
29
  };
30
30
 
31
31
  // src/version.ts
32
- var VERSION = true ? "3.0.22" : "0.0.0-test";
32
+ var VERSION = true ? "3.0.23" : "0.0.0-test";
33
33
 
34
34
  // src/azure-openai-provider.ts
35
35
  function createAzure(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/azure",
3
- "version": "3.0.22",
3
+ "version": "3.0.23",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -29,9 +29,9 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@ai-sdk/openai": "3.0.21",
33
32
  "@ai-sdk/provider": "3.0.5",
34
- "@ai-sdk/provider-utils": "4.0.10"
33
+ "@ai-sdk/provider-utils": "4.0.10",
34
+ "@ai-sdk/openai": "3.0.22"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "20.17.24",