@ai-sdk/togetherai 2.0.25 → 2.0.26
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 +8 -0
- package/README.md +8 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,14 @@ The Together.ai provider is available in the `@ai-sdk/togetherai` module. You ca
|
|
|
10
10
|
npm i @ai-sdk/togetherai
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## Skill for Coding Agents
|
|
14
|
+
|
|
15
|
+
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
npx skills add vercel/ai
|
|
19
|
+
```
|
|
20
|
+
|
|
13
21
|
## Provider Instance
|
|
14
22
|
|
|
15
23
|
You can import the default provider instance `togetherai` from `@ai-sdk/togetherai`:
|
package/dist/index.js
CHANGED
|
@@ -272,7 +272,7 @@ var togetheraiImageProviderOptionsSchema = (0, import_provider_utils4.lazySchema
|
|
|
272
272
|
);
|
|
273
273
|
|
|
274
274
|
// src/version.ts
|
|
275
|
-
var VERSION = true ? "2.0.
|
|
275
|
+
var VERSION = true ? "2.0.26" : "0.0.0-test";
|
|
276
276
|
|
|
277
277
|
// src/togetherai-provider.ts
|
|
278
278
|
function createTogetherAI(options = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -267,7 +267,7 @@ var togetheraiImageProviderOptionsSchema = lazySchema3(
|
|
|
267
267
|
);
|
|
268
268
|
|
|
269
269
|
// src/version.ts
|
|
270
|
-
var VERSION = true ? "2.0.
|
|
270
|
+
var VERSION = true ? "2.0.26" : "0.0.0-test";
|
|
271
271
|
|
|
272
272
|
// src/togetherai-provider.ts
|
|
273
273
|
function createTogetherAI(options = {}) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/togetherai",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.26",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@ai-sdk/openai-compatible": "2.0.
|
|
33
|
-
"@ai-sdk/provider
|
|
34
|
-
"@ai-sdk/provider": "
|
|
32
|
+
"@ai-sdk/openai-compatible": "2.0.23",
|
|
33
|
+
"@ai-sdk/provider": "3.0.5",
|
|
34
|
+
"@ai-sdk/provider-utils": "4.0.10"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "20.17.24",
|