@ai-sdk/cohere 3.0.13 → 3.0.14

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/cohere
2
2
 
3
+ ## 3.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+
3
9
  ## 3.0.13
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -10,6 +10,14 @@ The Cohere provider is available in the `@ai-sdk/cohere` module. You can install
10
10
  npm i @ai-sdk/cohere
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 `cohere` from `@ai-sdk/cohere`:
package/dist/index.js CHANGED
@@ -988,7 +988,7 @@ var CohereRerankingModel = class {
988
988
  };
989
989
 
990
990
  // src/version.ts
991
- var VERSION = true ? "3.0.13" : "0.0.0-test";
991
+ var VERSION = true ? "3.0.14" : "0.0.0-test";
992
992
 
993
993
  // src/cohere-provider.ts
994
994
  function createCohere(options = {}) {
package/dist/index.mjs CHANGED
@@ -989,7 +989,7 @@ var CohereRerankingModel = class {
989
989
  };
990
990
 
991
991
  // src/version.ts
992
- var VERSION = true ? "3.0.13" : "0.0.0-test";
992
+ var VERSION = true ? "3.0.14" : "0.0.0-test";
993
993
 
994
994
  // src/cohere-provider.ts
995
995
  function createCohere(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/cohere",
3
- "version": "3.0.13",
3
+ "version": "3.0.14",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",