modelmix 4.1.6 → 4.1.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/README.md +1 -2
- package/demo/minimax.js +1 -1
- package/index.js +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -137,10 +137,9 @@ Here's a comprehensive list of available methods:
|
|
|
137
137
|
| `gemini3flash()` | Google | gemini-3-flash-preview | [\$0.50 / \$3.00][3] |
|
|
138
138
|
| `gemini25pro()` | Google | gemini-2.5-pro | [\$1.25 / \$10.00][3] |
|
|
139
139
|
| `gemini25flash()` | Google | gemini-2.5-flash | [\$0.30 / \$2.50][3] |
|
|
140
|
-
| `grok3()` | Grok | grok-3 | [\$3.00 / \$15.00][6] |
|
|
141
140
|
| `grok4()` | Grok | grok-4-0709 | [\$3.00 / \$15.00][6] |
|
|
142
141
|
| `grok41[think]()` | Grok | grok-4-1-fast | [\$0.20 / \$0.50][6] |
|
|
143
|
-
| `
|
|
142
|
+
| `minimaxM21()` | MiniMax | MiniMax-M2.1 | [\$0.30 / \$1.20][9] |
|
|
144
143
|
| `sonar()` | Perplexity | sonar | [\$1.00 / \$1.00][4] |
|
|
145
144
|
| `sonarPro()` | Perplexity | sonar-pro | [\$3.00 / \$15.00][4] |
|
|
146
145
|
| `scout()` | Groq | Llama-4-Scout-17B-16E-Instruct | [\$0.11 / \$0.34][5] |
|
package/demo/minimax.js
CHANGED
package/index.js
CHANGED
|
@@ -261,6 +261,10 @@ class ModelMix {
|
|
|
261
261
|
return this.attach('MiniMax-M2', new MixMiniMax({ options, config }));
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
minimaxM21({ options = {}, config = {} } = {}) {
|
|
265
|
+
return this.attach('MiniMax-M2.1', new MixMiniMax({ options, config }));
|
|
266
|
+
}
|
|
267
|
+
|
|
264
268
|
minimaxM2Stable({ options = {}, config = {} } = {}) {
|
|
265
269
|
return this.attach('MiniMax-M2-Stable', new MixMiniMax({ options, config }));
|
|
266
270
|
}
|