@ai-sdk/togetherai 1.0.38 → 1.0.39

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,13 @@
1
1
  # @ai-sdk/togetherai
2
2
 
3
+ ## 1.0.39
4
+
5
+ ### Patch Changes
6
+
7
+ - 5543cd1: Add AI Gateway hint to provider READMEs
8
+ - Updated dependencies [5543cd1]
9
+ - @ai-sdk/openai-compatible@1.0.36
10
+
3
11
  ## 1.0.38
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **[Together.ai provider](https://ai-sdk.dev/providers/ai-sdk-providers/togetherai)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for the [Together.ai](https://together.ai) platform.
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Together.ai (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 Together.ai provider is available in the `@ai-sdk/togetherai` module. You can install it with
package/dist/index.js CHANGED
@@ -113,7 +113,7 @@ var togetheraiErrorSchema = import_v4.z.object({
113
113
  });
114
114
 
115
115
  // src/version.ts
116
- var VERSION = true ? "1.0.38" : "0.0.0-test";
116
+ var VERSION = true ? "1.0.39" : "0.0.0-test";
117
117
 
118
118
  // src/togetherai-provider.ts
119
119
  function loadDeprecatedApiKey() {
package/dist/index.mjs CHANGED
@@ -98,7 +98,7 @@ var togetheraiErrorSchema = z.object({
98
98
  });
99
99
 
100
100
  // src/version.ts
101
- var VERSION = true ? "1.0.38" : "0.0.0-test";
101
+ var VERSION = true ? "1.0.39" : "0.0.0-test";
102
102
 
103
103
  // src/togetherai-provider.ts
104
104
  function loadDeprecatedApiKey() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/togetherai",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -19,7 +19,7 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@ai-sdk/openai-compatible": "1.0.35",
22
+ "@ai-sdk/openai-compatible": "1.0.36",
23
23
  "@ai-sdk/provider": "2.0.1",
24
24
  "@ai-sdk/provider-utils": "3.0.23"
25
25
  },