@ai-sdk/lmnt 3.0.0-canary.47 → 3.0.0-canary.49

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,21 @@
1
1
  # @ai-sdk/lmnt
2
2
 
3
+ ## 3.0.0-canary.49
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [aeda373]
8
+ - Updated dependencies [375fdd7]
9
+ - Updated dependencies [b4507d5]
10
+ - @ai-sdk/provider-utils@5.0.0-canary.48
11
+
12
+ ## 3.0.0-canary.48
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [bae5e2b]
17
+ - @ai-sdk/provider-utils@5.0.0-canary.47
18
+
3
19
  ## 3.0.0-canary.47
4
20
 
5
21
  ### Patch Changes
package/README.md CHANGED
@@ -33,7 +33,7 @@ import { lmnt } from '@ai-sdk/lmnt';
33
33
 
34
34
  ```ts
35
35
  import { lmnt } from '@ai-sdk/lmnt';
36
- import { experimental_generateSpeech as generateSpeech } from 'ai';
36
+ import { generateSpeech } from 'ai';
37
37
 
38
38
  const result = await generateSpeech({
39
39
  model: lmnt.speech('aurora'),
package/dist/index.js CHANGED
@@ -194,7 +194,7 @@ var LMNTSpeechModel = class _LMNTSpeechModel {
194
194
  };
195
195
 
196
196
  // src/version.ts
197
- var VERSION = true ? "3.0.0-canary.47" : "0.0.0-test";
197
+ var VERSION = true ? "3.0.0-canary.49" : "0.0.0-test";
198
198
 
199
199
  // src/lmnt-provider.ts
200
200
  function createLMNT(options = {}) {
package/docs/140-lmnt.mdx CHANGED
@@ -78,7 +78,7 @@ const model = lmnt.speech('aurora');
78
78
  The `voice` parameter can be set to a voice ID from LMNT. You can find available voices in the [LMNT documentation](https://docs.lmnt.com/api-reference/voices/list-voices).
79
79
 
80
80
  ```ts highlight="7"
81
- import { experimental_generateSpeech as generateSpeech } from 'ai';
81
+ import { generateSpeech } from 'ai';
82
82
  import { lmnt } from '@ai-sdk/lmnt';
83
83
 
84
84
  const result = await generateSpeech({
@@ -92,7 +92,7 @@ const result = await generateSpeech({
92
92
  You can also pass additional provider-specific options using the `providerOptions` argument:
93
93
 
94
94
  ```ts highlight="10-14"
95
- import { experimental_generateSpeech as generateSpeech } from 'ai';
95
+ import { generateSpeech } from 'ai';
96
96
  import { lmnt } from '@ai-sdk/lmnt';
97
97
  import { type LMNTSpeechModelOptions } from '@ai-sdk/lmnt';
98
98
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/lmnt",
3
- "version": "3.0.0-canary.47",
3
+ "version": "3.0.0-canary.49",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@ai-sdk/provider": "4.0.0-canary.18",
33
- "@ai-sdk/provider-utils": "5.0.0-canary.46"
33
+ "@ai-sdk/provider-utils": "5.0.0-canary.48"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "22.19.19",