@ai-sdk/perplexity 4.0.0-beta.12 → 4.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,11 @@
1
1
  # @ai-sdk/perplexity
2
2
 
3
+ ## 4.0.0-beta.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 38fc777: Add AI Gateway hint to provider READMEs
8
+
3
9
  ## 4.0.0-beta.12
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -14,6 +14,8 @@ contains language model support for Perplexity's Sonar API - a powerful answer e
14
14
  - Data privacy - no training on customer data
15
15
  - Self-serve API access with scalable pricing
16
16
 
17
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Perplexity (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).
18
+
17
19
  ## Setup
18
20
 
19
21
  The Perplexity provider is available in the `@ai-sdk/perplexity` module. You can install it with:
package/dist/index.js CHANGED
@@ -507,7 +507,7 @@ var errorToMessage = (data) => {
507
507
  };
508
508
 
509
509
  // src/version.ts
510
- var VERSION = true ? "4.0.0-beta.12" : "0.0.0-test";
510
+ var VERSION = true ? "4.0.0-beta.13" : "0.0.0-test";
511
511
 
512
512
  // src/perplexity-provider.ts
513
513
  function createPerplexity(options = {}) {
package/dist/index.mjs CHANGED
@@ -495,7 +495,7 @@ var errorToMessage = (data) => {
495
495
  };
496
496
 
497
497
  // src/version.ts
498
- var VERSION = true ? "4.0.0-beta.12" : "0.0.0-test";
498
+ var VERSION = true ? "4.0.0-beta.13" : "0.0.0-test";
499
499
 
500
500
  // src/perplexity-provider.ts
501
501
  function createPerplexity(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/perplexity",
3
- "version": "4.0.0-beta.12",
3
+ "version": "4.0.0-beta.13",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",