@ai-sdk/groq 4.0.0-canary.52 → 4.0.0-canary.53

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,14 @@
1
1
  # @ai-sdk/groq
2
2
 
3
+ ## 4.0.0-canary.53
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
+
3
12
  ## 4.0.0-canary.52
4
13
 
5
14
  ### Patch Changes
package/dist/index.js CHANGED
@@ -959,7 +959,7 @@ var groqTools = {
959
959
  };
960
960
 
961
961
  // src/version.ts
962
- var VERSION = true ? "4.0.0-canary.52" : "0.0.0-test";
962
+ var VERSION = true ? "4.0.0-canary.53" : "0.0.0-test";
963
963
 
964
964
  // src/groq-provider.ts
965
965
  function createGroq(options = {}) {
package/docs/09-groq.mdx CHANGED
@@ -437,7 +437,7 @@ const model = groq.transcription('whisper-large-v3');
437
437
  You can also pass additional provider-specific options using the `providerOptions` argument. For example, supplying the input language in ISO-639-1 (e.g. `en`) format will improve accuracy and latency.
438
438
 
439
439
  ```ts highlight="6"
440
- import { experimental_transcribe as transcribe } from 'ai';
440
+ import { transcribe } from 'ai';
441
441
  import { groq, type GroqTranscriptionModelOptions } from '@ai-sdk/groq';
442
442
  import { readFile } from 'fs/promises';
443
443
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/groq",
3
- "version": "4.0.0-canary.52",
3
+ "version": "4.0.0-canary.53",
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.47"
33
+ "@ai-sdk/provider-utils": "5.0.0-canary.48"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "22.19.19",