@ai-sdk/deepseek 2.0.28 → 2.0.29

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,11 @@
1
1
  # @ai-sdk/deepseek
2
2
 
3
+ ## 2.0.29
4
+
5
+ ### Patch Changes
6
+
7
+ - d42076d: Add AI Gateway hint to provider READMEs
8
+
3
9
  ## 2.0.28
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **[DeepSeek provider](https://ai-sdk.dev/providers/ai-sdk-providers/deepseek)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for the [DeepSeek](https://www.deepseek.com) platform.
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access DeepSeek (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).
6
+
5
7
  ## Setup
6
8
 
7
9
  The DeepSeek provider is available in the `@ai-sdk/deepseek` module. You can install it with
package/dist/index.js CHANGED
@@ -781,7 +781,7 @@ var DeepSeekChatLanguageModel = class {
781
781
  };
782
782
 
783
783
  // src/version.ts
784
- var VERSION = true ? "2.0.28" : "0.0.0-test";
784
+ var VERSION = true ? "2.0.29" : "0.0.0-test";
785
785
 
786
786
  // src/deepseek-provider.ts
787
787
  function createDeepSeek(options = {}) {
package/dist/index.mjs CHANGED
@@ -770,7 +770,7 @@ var DeepSeekChatLanguageModel = class {
770
770
  };
771
771
 
772
772
  // src/version.ts
773
- var VERSION = true ? "2.0.28" : "0.0.0-test";
773
+ var VERSION = true ? "2.0.29" : "0.0.0-test";
774
774
 
775
775
  // src/deepseek-provider.ts
776
776
  function createDeepSeek(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/deepseek",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",