@wix/evalforge-types 0.77.0 → 0.78.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 +31 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +27 -1
- package/build/index.mjs.map +2 -2
- package/build/types/common/models.d.ts +20 -0
- package/package.json +2 -2
|
@@ -44,6 +44,26 @@ export declare const OPENAI_RESPONSES_MODEL_IDS: ReadonlySet<string>;
|
|
|
44
44
|
export declare const OpenAIModelSchema: z.ZodEnum<{
|
|
45
45
|
[x: string]: string;
|
|
46
46
|
}>;
|
|
47
|
+
export declare const GeminiModel: {
|
|
48
|
+
readonly GEMINI_2_0_FLASH: "gemini-2.0-flash";
|
|
49
|
+
readonly GEMINI_2_0_FLASH_LITE: "gemini-2.0-flash-lite";
|
|
50
|
+
readonly GEMINI_2_5_PRO: "gemini-2.5-pro";
|
|
51
|
+
readonly GEMINI_2_5_FLASH: "gemini-2.5-flash";
|
|
52
|
+
readonly GEMINI_2_5_FLASH_LITE: "gemini-2.5-flash-lite";
|
|
53
|
+
readonly GEMINI_3_0_PRO: "gemini-3-pro-preview";
|
|
54
|
+
readonly GEMINI_3_0_FLASH: "gemini-3-flash-preview";
|
|
55
|
+
readonly GEMINI_3_1_PRO: "gemini-3.1-pro-preview";
|
|
56
|
+
};
|
|
57
|
+
export type GeminiModel = (typeof GeminiModel)[keyof typeof GeminiModel];
|
|
58
|
+
export declare const AVAILABLE_GEMINI_MODEL_IDS: GeminiModel[];
|
|
59
|
+
/**
|
|
60
|
+
* Gemini models that support extended reasoning (thinking).
|
|
61
|
+
* These models accept a `thinkingConfig` in the generation config.
|
|
62
|
+
*/
|
|
63
|
+
export declare const GEMINI_THINKING_MODEL_IDS: ReadonlySet<string>;
|
|
64
|
+
export declare const GeminiModelSchema: z.ZodEnum<{
|
|
65
|
+
[x: string]: string;
|
|
66
|
+
}>;
|
|
47
67
|
export declare const ALL_AVAILABLE_MODEL_IDS: string[];
|
|
48
68
|
export declare const AnyModelSchema: z.ZodEnum<{
|
|
49
69
|
[x: string]: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.78.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"artifactId": "evalforge-types"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "8de355f25d33f006c618941ca754a92f07dc96e166199ea843befbb9"
|
|
50
50
|
}
|