@ai-sdk/deepinfra 3.0.0-beta.12 → 3.0.0-beta.13

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,13 @@
1
1
  # @ai-sdk/deepinfra
2
2
 
3
+ ## 3.0.0-beta.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 38fc777: Add AI Gateway hint to provider READMEs
8
+ - Updated dependencies [38fc777]
9
+ - @ai-sdk/openai-compatible@3.0.0-beta.13
10
+
3
11
  ## 3.0.0-beta.12
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -3,6 +3,8 @@
3
3
  The **[DeepInfra provider](https://ai-sdk.dev/providers/ai-sdk-providers/deepinfra)** for the [AI SDK](https://ai-sdk.dev/docs)
4
4
  contains language model support for the DeepInfra API, giving you access to models like Llama 3, Mixtral, and other state-of-the-art LLMs.
5
5
 
6
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access DeepInfra (and hundreds of models from other providers) — no additional packages, API keys, or extra cost. [Get started with AI Gateway](https://vercel.com/ai-gateway).
7
+
6
8
  ## Setup
7
9
 
8
10
  The DeepInfra provider is available in the `@ai-sdk/deepinfra` module. You can install it with
package/dist/index.js CHANGED
@@ -293,7 +293,7 @@ var DeepInfraChatLanguageModel = class extends import_openai_compatible.OpenAICo
293
293
  };
294
294
 
295
295
  // src/version.ts
296
- var VERSION = true ? "3.0.0-beta.12" : "0.0.0-test";
296
+ var VERSION = true ? "3.0.0-beta.13" : "0.0.0-test";
297
297
 
298
298
  // src/deepinfra-provider.ts
299
299
  function createDeepInfra(options = {}) {
package/dist/index.mjs CHANGED
@@ -281,7 +281,7 @@ var DeepInfraChatLanguageModel = class extends OpenAICompatibleChatLanguageModel
281
281
  };
282
282
 
283
283
  // src/version.ts
284
- var VERSION = true ? "3.0.0-beta.12" : "0.0.0-test";
284
+ var VERSION = true ? "3.0.0-beta.13" : "0.0.0-test";
285
285
 
286
286
  // src/deepinfra-provider.ts
287
287
  function createDeepInfra(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/deepinfra",
3
- "version": "3.0.0-beta.12",
3
+ "version": "3.0.0-beta.13",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -29,7 +29,7 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@ai-sdk/openai-compatible": "3.0.0-beta.12",
32
+ "@ai-sdk/openai-compatible": "3.0.0-beta.13",
33
33
  "@ai-sdk/provider": "4.0.0-beta.5",
34
34
  "@ai-sdk/provider-utils": "5.0.0-beta.9"
35
35
  },