@ai-sdk/lmnt 2.0.13 → 2.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/lmnt
2
2
 
3
+ ## 2.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+
3
9
  ## 2.0.13
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -11,6 +11,14 @@ The LMNT provider is available in the `@ai-sdk/lmnt` module. You can install it
11
11
  npm i @ai-sdk/lmnt
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 `lmnt` from `@ai-sdk/lmnt`:
package/dist/index.js CHANGED
@@ -197,7 +197,7 @@ var LMNTSpeechModel = class {
197
197
  };
198
198
 
199
199
  // src/version.ts
200
- var VERSION = true ? "2.0.13" : "0.0.0-test";
200
+ var VERSION = true ? "2.0.14" : "0.0.0-test";
201
201
 
202
202
  // src/lmnt-provider.ts
203
203
  function createLMNT(options = {}) {
package/dist/index.mjs CHANGED
@@ -177,7 +177,7 @@ var LMNTSpeechModel = class {
177
177
  };
178
178
 
179
179
  // src/version.ts
180
- var VERSION = true ? "2.0.13" : "0.0.0-test";
180
+ var VERSION = true ? "2.0.14" : "0.0.0-test";
181
181
 
182
182
  // src/lmnt-provider.ts
183
183
  function createLMNT(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/lmnt",
3
- "version": "2.0.13",
3
+ "version": "2.0.14",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",