@ai-sdk/replicate 1.0.24 → 1.0.25

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/replicate
2
2
 
3
+ ## 1.0.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 5543cd1: Add AI Gateway hint to provider READMEs
8
+
3
9
  ## 1.0.24
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **[Replicate provider](https://ai-sdk.dev/providers/ai-sdk-providers/replicate)** for the [AI SDK](https://ai-sdk.dev/docs) contains image model support for the Replicate API.
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Replicate (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 Replicate provider is available in the `@ai-sdk/replicate` module. You can install it with
package/dist/index.js CHANGED
@@ -133,7 +133,7 @@ var replicateImageResponseSchema = import_v42.z.object({
133
133
  });
134
134
 
135
135
  // src/version.ts
136
- var VERSION = true ? "1.0.24" : "0.0.0-test";
136
+ var VERSION = true ? "1.0.25" : "0.0.0-test";
137
137
 
138
138
  // src/replicate-provider.ts
139
139
  function createReplicate(options = {}) {
package/dist/index.mjs CHANGED
@@ -112,7 +112,7 @@ var replicateImageResponseSchema = z2.object({
112
112
  });
113
113
 
114
114
  // src/version.ts
115
- var VERSION = true ? "1.0.24" : "0.0.0-test";
115
+ var VERSION = true ? "1.0.25" : "0.0.0-test";
116
116
 
117
117
  // src/replicate-provider.ts
118
118
  function createReplicate(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/replicate",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",