@ai-sdk/hume 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 +16 -0
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/docs/150-hume.mdx +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @ai-sdk/hume
|
|
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 { hume } from '@ai-sdk/hume';
|
|
|
33
33
|
|
|
34
34
|
```ts
|
|
35
35
|
import { hume } from '@ai-sdk/hume';
|
|
36
|
-
import {
|
|
36
|
+
import { generateSpeech } from 'ai';
|
|
37
37
|
|
|
38
38
|
const result = await generateSpeech({
|
|
39
39
|
model: hume.speech('aurora'),
|
package/dist/index.js
CHANGED
|
@@ -233,7 +233,7 @@ var HumeSpeechModel = class _HumeSpeechModel {
|
|
|
233
233
|
};
|
|
234
234
|
|
|
235
235
|
// src/version.ts
|
|
236
|
-
var VERSION = true ? "3.0.0-canary.
|
|
236
|
+
var VERSION = true ? "3.0.0-canary.49" : "0.0.0-test";
|
|
237
237
|
|
|
238
238
|
// src/hume-provider.ts
|
|
239
239
|
function createHume(options = {}) {
|
package/docs/150-hume.mdx
CHANGED
|
@@ -76,7 +76,7 @@ const model = hume.speech();
|
|
|
76
76
|
You can pass standard speech generation options like `voice`, `speed`, `instructions`, and `outputFormat`:
|
|
77
77
|
|
|
78
78
|
```ts
|
|
79
|
-
import {
|
|
79
|
+
import { generateSpeech } from 'ai';
|
|
80
80
|
import { hume } from '@ai-sdk/hume';
|
|
81
81
|
|
|
82
82
|
const result = await generateSpeech({
|
|
@@ -123,7 +123,7 @@ const result = await generateSpeech({
|
|
|
123
123
|
You can pass additional provider-specific options using the `providerOptions` argument:
|
|
124
124
|
|
|
125
125
|
```ts
|
|
126
|
-
import {
|
|
126
|
+
import { generateSpeech } from 'ai';
|
|
127
127
|
import { hume } from '@ai-sdk/hume';
|
|
128
128
|
import { type HumeSpeechModelOptions } from '@ai-sdk/hume';
|
|
129
129
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/hume",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
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.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.0-canary.48"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "22.19.19",
|