@ai-sdk/prodia 0.0.6 → 0.0.7

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/prodia
2
2
 
3
+ ## 0.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 5543cd1: Add AI Gateway hint to provider READMEs
8
+
3
9
  ## 0.0.6
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **[Prodia provider](https://ai-sdk.dev/providers/ai-sdk-providers/prodia)** for the [AI SDK](https://ai-sdk.dev/docs) adds image model support for the [Prodia API](https://docs.prodia.com/).
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Prodia (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 Prodia provider is available in the `@ai-sdk/prodia` module. You can install it with
package/dist/index.js CHANGED
@@ -696,7 +696,7 @@ function createLanguageMultipartResponseHandler() {
696
696
  }
697
697
 
698
698
  // src/version.ts
699
- var VERSION = true ? "0.0.6" : "0.0.0-test";
699
+ var VERSION = true ? "0.0.7" : "0.0.0-test";
700
700
 
701
701
  // src/prodia-provider.ts
702
702
  var defaultBaseURL = "https://inference.prodia.com/v2";
package/dist/index.mjs CHANGED
@@ -692,7 +692,7 @@ function createLanguageMultipartResponseHandler() {
692
692
  }
693
693
 
694
694
  // src/version.ts
695
- var VERSION = true ? "0.0.6" : "0.0.0-test";
695
+ var VERSION = true ? "0.0.7" : "0.0.0-test";
696
696
 
697
697
  // src/prodia-provider.ts
698
698
  var defaultBaseURL = "https://inference.prodia.com/v2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/prodia",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",