@ai-sdk/deepgram 3.0.10 → 3.0.11
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 +7 -0
- package/dist/index.js +1 -1
- package/docs/110-deepgram.mdx +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -610,7 +610,7 @@ var DeepgramSpeechModel = class _DeepgramSpeechModel {
|
|
|
610
610
|
};
|
|
611
611
|
|
|
612
612
|
// src/version.ts
|
|
613
|
-
var VERSION = true ? "3.0.
|
|
613
|
+
var VERSION = true ? "3.0.11" : "0.0.0-test";
|
|
614
614
|
|
|
615
615
|
// src/deepgram-provider.ts
|
|
616
616
|
function createDeepgram(options = {}) {
|
package/docs/110-deepgram.mdx
CHANGED
|
@@ -167,7 +167,7 @@ const model = deepgram.transcription('nova-3');
|
|
|
167
167
|
|
|
168
168
|
You can also pass additional provider-specific options using the `providerOptions` argument. For example, supplying the `summarize` option will enable summaries for sections of content.
|
|
169
169
|
|
|
170
|
-
```ts highlight="
|
|
170
|
+
```ts highlight="11-15"
|
|
171
171
|
import { transcribe } from 'ai';
|
|
172
172
|
import {
|
|
173
173
|
deepgram,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/deepgram",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.11",
|
|
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.3",
|
|
33
|
-
"@ai-sdk/provider-utils": "5.0.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.11"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "22.19.19",
|