modelmix 4.0.4 → 4.0.6
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 +3 -3
- package/index.js +0 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -133,9 +133,9 @@ Here's a comprehensive list of available methods:
|
|
|
133
133
|
| `sonnet4[think]()` | Anthropic | claude-sonnet-4-20250514 | [\$3.00 / \$15.00][2] |
|
|
134
134
|
| `haiku35()` | Anthropic | claude-3-5-haiku-20241022 | [\$0.80 / \$4.00][2] |
|
|
135
135
|
| `haiku45[think]()` | Anthropic | claude-haiku-4-5-20251001 | [\$1.00 / \$5.00][2] |
|
|
136
|
-
| `
|
|
137
|
-
| `
|
|
138
|
-
| `
|
|
136
|
+
| `gemini3pro()` | Google | gemini-3-pro-preview | [\$2.00 / \$12.00][3] |
|
|
137
|
+
| `gemini25pro()` | Google | gemini-2.5-pro | [\$1.25 / \$10.00][3] |
|
|
138
|
+
| `gemini25flash()` | Google | gemini-2.5-flash | [\$0.30 / \$2.50][3] |
|
|
139
139
|
| `grok3()` | Grok | grok-3 | [\$3.00 / \$15.00][6] |
|
|
140
140
|
| `grok3mini()` | Grok | grok-3-mini | [\$0.30 / \$0.50][6] |
|
|
141
141
|
| `grok4()` | Grok | grok-4-0709 | [\$3.00 / \$15.00][6] |
|
package/index.js
CHANGED
|
@@ -159,12 +159,6 @@ class ModelMix {
|
|
|
159
159
|
gemini25pro({ options = {}, config = {} } = {}) {
|
|
160
160
|
return this.attach('gemini-2.5-pro', new MixGoogle({ options, config }));
|
|
161
161
|
}
|
|
162
|
-
gemini25proExp({ options = {}, config = {} } = {}) {
|
|
163
|
-
return this.attach('gemini-2.5-pro-exp-03-25', new MixGoogle({ options, config }));
|
|
164
|
-
}
|
|
165
|
-
gemini25pro({ options = {}, config = {} } = {}) {
|
|
166
|
-
return this.attach('gemini-2.5-pro-preview-05-06', new MixGoogle({ options, config }));
|
|
167
|
-
}
|
|
168
162
|
sonarPro({ options = {}, config = {} } = {}) {
|
|
169
163
|
return this.attach('sonar-pro', new MixPerplexity({ options, config }));
|
|
170
164
|
}
|