@wix/evalforge-types 0.93.0 → 0.94.0
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/build/index.js +4 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +4 -2
- package/build/index.mjs.map +2 -2
- package/build/types/common/models.d.ts +1 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -360,7 +360,8 @@ var GeminiModel = {
|
|
|
360
360
|
GEMINI_2_5_FLASH_LITE: "gemini-2.5-flash-lite",
|
|
361
361
|
GEMINI_3_0_PRO: "gemini-3-pro-preview",
|
|
362
362
|
GEMINI_3_0_FLASH: "gemini-3-flash-preview",
|
|
363
|
-
GEMINI_3_1_PRO: "gemini-3.1-pro-preview"
|
|
363
|
+
GEMINI_3_1_PRO: "gemini-3.1-pro-preview",
|
|
364
|
+
GEMINI_3_5_FLASH: "gemini-3.5-flash"
|
|
364
365
|
};
|
|
365
366
|
var AVAILABLE_GEMINI_MODEL_IDS = Object.values(GeminiModel);
|
|
366
367
|
var GEMINI_THINKING_MODEL_IDS = /* @__PURE__ */ new Set([
|
|
@@ -368,7 +369,8 @@ var GEMINI_THINKING_MODEL_IDS = /* @__PURE__ */ new Set([
|
|
|
368
369
|
GeminiModel.GEMINI_2_5_FLASH,
|
|
369
370
|
GeminiModel.GEMINI_3_0_PRO,
|
|
370
371
|
GeminiModel.GEMINI_3_0_FLASH,
|
|
371
|
-
GeminiModel.GEMINI_3_1_PRO
|
|
372
|
+
GeminiModel.GEMINI_3_1_PRO,
|
|
373
|
+
GeminiModel.GEMINI_3_5_FLASH
|
|
372
374
|
]);
|
|
373
375
|
var GeminiModelSchema = import_zod4.z.enum(
|
|
374
376
|
AVAILABLE_GEMINI_MODEL_IDS
|