@ai-sdk/prodia 2.0.0-beta.11 → 2.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,18 @@
1
1
  # @ai-sdk/prodia
2
2
 
3
+ ## 2.0.0-beta.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 38fc777: Add AI Gateway hint to provider READMEs
8
+
9
+ ## 2.0.0-beta.12
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [2e17091]
14
+ - @ai-sdk/provider-utils@5.0.0-beta.9
15
+
3
16
  ## 2.0.0-beta.11
4
17
 
5
18
  ### 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
@@ -907,7 +907,7 @@ function getExtension(mediaType) {
907
907
  }
908
908
 
909
909
  // src/version.ts
910
- var VERSION = true ? "2.0.0-beta.11" : "0.0.0-test";
910
+ var VERSION = true ? "2.0.0-beta.13" : "0.0.0-test";
911
911
 
912
912
  // src/prodia-provider.ts
913
913
  var defaultBaseURL = "https://inference.prodia.com/v2";
package/dist/index.mjs CHANGED
@@ -914,7 +914,7 @@ function getExtension(mediaType) {
914
914
  }
915
915
 
916
916
  // src/version.ts
917
- var VERSION = true ? "2.0.0-beta.11" : "0.0.0-test";
917
+ var VERSION = true ? "2.0.0-beta.13" : "0.0.0-test";
918
918
 
919
919
  // src/prodia-provider.ts
920
920
  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": "2.0.0-beta.11",
3
+ "version": "2.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
  "dependencies": {
31
31
  "@ai-sdk/provider": "4.0.0-beta.5",
32
- "@ai-sdk/provider-utils": "5.0.0-beta.8"
32
+ "@ai-sdk/provider-utils": "5.0.0-beta.9"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "20.17.24",