modelmix 4.1.4 → 4.1.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 +1 -0
- package/index.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -134,6 +134,7 @@ Here's a comprehensive list of available methods:
|
|
|
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
136
|
| `gemini3pro()` | Google | gemini-3-pro-preview | [\$2.00 / \$12.00][3] |
|
|
137
|
+
| `gemini3flash()` | Google | gemini-3-flash-preview | [\$0.50 / \$3.00][3] |
|
|
137
138
|
| `gemini25pro()` | Google | gemini-2.5-pro | [\$1.25 / \$10.00][3] |
|
|
138
139
|
| `gemini25flash()` | Google | gemini-2.5-flash | [\$0.30 / \$2.50][3] |
|
|
139
140
|
| `grok3()` | Grok | grok-3 | [\$3.00 / \$15.00][6] |
|
package/index.js
CHANGED
|
@@ -183,6 +183,9 @@ class ModelMix {
|
|
|
183
183
|
gemini3pro({ options = {}, config = {} } = {}) {
|
|
184
184
|
return this.attach('gemini-3-pro-preview', new MixGoogle({ options, config }));
|
|
185
185
|
}
|
|
186
|
+
gemini3flash({ options = {}, config = {} } = {}) {
|
|
187
|
+
return this.attach('gemini-3-flash-preview', new MixGoogle({ options, config }));
|
|
188
|
+
}
|
|
186
189
|
gemini25pro({ options = {}, config = {} } = {}) {
|
|
187
190
|
return this.attach('gemini-2.5-pro', new MixGoogle({ options, config }));
|
|
188
191
|
}
|