modelmix 3.9.2 → 3.9.4
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/README.md +1 -0
- package/index.js +4 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -143,6 +143,7 @@ Here's a comprehensive list of available methods:
|
|
|
143
143
|
| `hermes3()` | Lambda | Hermes-3-Llama-3.1-405B-FP8 | [\$0.80 / \$0.80][8] |
|
|
144
144
|
| `qwen3()` | Together | Qwen3-235B-A22B-fp8-tput | [\$0.20 / \$0.60][7] |
|
|
145
145
|
| `kimiK2()` | Together | Kimi-K2-Instruct | [\$1.00 / \$3.00][7] |
|
|
146
|
+
| `kimiK2think()` | Together | moonshotai/Kimi-K2-Thinking | [\$1.20 / \$4.00][7] |
|
|
146
147
|
|
|
147
148
|
[1]: https://openai.com/api/pricing/ "Pricing | OpenAI"
|
|
148
149
|
[2]: https://docs.anthropic.com/en/docs/about-claude/pricing "Pricing - Anthropic"
|
package/index.js
CHANGED
|
@@ -208,6 +208,10 @@ class ModelMix {
|
|
|
208
208
|
return this;
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
+
kimiK2think({ options = {}, config = {} } = {}) {
|
|
212
|
+
return this.attach('moonshotai/Kimi-K2-Thinking', new MixTogether({ options, config }));
|
|
213
|
+
}
|
|
214
|
+
|
|
211
215
|
lmstudio({ options = {}, config = {} } = {}) {
|
|
212
216
|
return this.attach('lmstudio', new MixLMStudio({ options, config }));
|
|
213
217
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "modelmix",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.4",
|
|
4
4
|
"description": "🧬 ModelMix - Unified API for Diverse AI LLM.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"nano",
|
|
34
34
|
"deepseek",
|
|
35
35
|
"oss",
|
|
36
|
-
"
|
|
36
|
+
"k2",
|
|
37
37
|
"reasoning",
|
|
38
38
|
"bottleneck",
|
|
39
39
|
"cerebras",
|
|
40
|
-
"
|
|
40
|
+
"thinking",
|
|
41
41
|
"clasen"
|
|
42
42
|
],
|
|
43
43
|
"author": "Martin Clasen",
|