@ai-sdk/togetherai 3.0.7 → 3.0.8
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 +9 -0
- package/dist/index.js +1 -1
- package/docs/24-togetherai.mdx +11 -25
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
package/docs/24-togetherai.mdx
CHANGED
|
@@ -12,21 +12,7 @@ The [Together.ai](https://together.ai) provider contains support for 200+ open-s
|
|
|
12
12
|
The Together.ai provider is available via the `@ai-sdk/togetherai` module. You can
|
|
13
13
|
install it with
|
|
14
14
|
|
|
15
|
-
<
|
|
16
|
-
<Tab>
|
|
17
|
-
<Snippet text="pnpm add @ai-sdk/togetherai" dark />
|
|
18
|
-
</Tab>
|
|
19
|
-
<Tab>
|
|
20
|
-
<Snippet text="npm install @ai-sdk/togetherai" dark />
|
|
21
|
-
</Tab>
|
|
22
|
-
<Tab>
|
|
23
|
-
<Snippet text="yarn add @ai-sdk/togetherai" dark />
|
|
24
|
-
</Tab>
|
|
25
|
-
|
|
26
|
-
<Tab>
|
|
27
|
-
<Snippet text="bun add @ai-sdk/togetherai" dark />
|
|
28
|
-
</Tab>
|
|
29
|
-
</Tabs>
|
|
15
|
+
<InstallPackages packages="@ai-sdk/togetherai" />
|
|
30
16
|
|
|
31
17
|
## Provider Instance
|
|
32
18
|
|
|
@@ -116,16 +102,16 @@ The Together.ai provider also supports [completion models](https://docs.together
|
|
|
116
102
|
|
|
117
103
|
## Model Capabilities
|
|
118
104
|
|
|
119
|
-
| Model | Image Input
|
|
120
|
-
| --------------------------------------------------- |
|
|
121
|
-
| `moonshotai/Kimi-K2.5` | <Check
|
|
122
|
-
| `Qwen/Qwen3.5-397B-A17B` | <Check
|
|
123
|
-
| `MiniMaxAI/MiniMax-M2.5` | <Cross
|
|
124
|
-
| `zai-org/GLM-5` | <Cross
|
|
125
|
-
| `deepseek-ai/DeepSeek-V3.1` | <Cross
|
|
126
|
-
| `openai/gpt-oss-120b` | <Cross
|
|
127
|
-
| `openai/gpt-oss-20b` | <Cross
|
|
128
|
-
| `meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8` | <Check
|
|
105
|
+
| Model | Image Input | Object Generation | Tool Usage | Tool Streaming |
|
|
106
|
+
| --------------------------------------------------- | ----------- | ----------------- | ---------- | -------------- |
|
|
107
|
+
| `moonshotai/Kimi-K2.5` | <Check /> | <Check /> | <Check /> | <Check /> |
|
|
108
|
+
| `Qwen/Qwen3.5-397B-A17B` | <Check /> | <Check /> | <Check /> | <Check /> |
|
|
109
|
+
| `MiniMaxAI/MiniMax-M2.5` | <Cross /> | <Check /> | <Check /> | <Check /> |
|
|
110
|
+
| `zai-org/GLM-5` | <Cross /> | <Check /> | <Check /> | <Check /> |
|
|
111
|
+
| `deepseek-ai/DeepSeek-V3.1` | <Cross /> | <Check /> | <Check /> | <Check /> |
|
|
112
|
+
| `openai/gpt-oss-120b` | <Cross /> | <Check /> | <Check /> | <Check /> |
|
|
113
|
+
| `openai/gpt-oss-20b` | <Cross /> | <Check /> | <Check /> | <Check /> |
|
|
114
|
+
| `meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8` | <Check /> | <Check /> | <Check /> | <Check /> |
|
|
129
115
|
|
|
130
116
|
<Note>
|
|
131
117
|
The table above lists popular models. Please see the [Together.ai
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/togetherai",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@ai-sdk/openai-compatible": "3.0.
|
|
33
|
-
"@ai-sdk/provider": "4.0.
|
|
34
|
-
"@ai-sdk/provider-utils": "5.0.
|
|
32
|
+
"@ai-sdk/openai-compatible": "3.0.7",
|
|
33
|
+
"@ai-sdk/provider": "4.0.3",
|
|
34
|
+
"@ai-sdk/provider-utils": "5.0.7"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "22.19.19",
|