@wix/evalforge-types 0.50.0 → 0.51.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 +69 -34
- package/build/index.js.map +3 -3
- package/build/index.mjs +68 -34
- package/build/index.mjs.map +3 -3
- package/build/types/common/models.d.ts +39 -2
- package/package.json +3 -3
|
@@ -1,12 +1,49 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { AnthropicModel as _AnthropicModel, Model as _OpenAIModel } from '@wix/ambassador-ds-wix-ai-gateway-v1-prompt/types';
|
|
3
|
+
/**
|
|
4
|
+
* Curated model sets — only models suitable for code generation.
|
|
5
|
+
* Excludes legacy/superseded snapshots, previews, experimental,
|
|
6
|
+
* completion-only, and non-text models.
|
|
7
|
+
* Update these explicitly when new models become available.
|
|
8
|
+
*/
|
|
9
|
+
export declare const ClaudeModel: {
|
|
10
|
+
readonly CLAUDE_3_7_SONNET_1_0: _AnthropicModel.CLAUDE_3_7_SONNET_1_0;
|
|
11
|
+
readonly CLAUDE_4_SONNET_1_0: _AnthropicModel.CLAUDE_4_SONNET_1_0;
|
|
12
|
+
readonly CLAUDE_4_OPUS_1_0: _AnthropicModel.CLAUDE_4_OPUS_1_0;
|
|
13
|
+
readonly CLAUDE_4_5_SONNET_1_0: _AnthropicModel.CLAUDE_4_5_SONNET_1_0;
|
|
14
|
+
readonly CLAUDE_4_5_HAIKU_1_0: _AnthropicModel.CLAUDE_4_5_HAIKU_1_0;
|
|
15
|
+
readonly CLAUDE_4_5_OPUS_1_0: _AnthropicModel.CLAUDE_4_5_OPUS_1_0;
|
|
16
|
+
readonly CLAUDE_4_6_SONNET_1_0: _AnthropicModel.CLAUDE_4_6_SONNET_1_0;
|
|
17
|
+
readonly CLAUDE_4_6_OPUS_1_0: _AnthropicModel.CLAUDE_4_6_OPUS_1_0;
|
|
18
|
+
};
|
|
19
|
+
export type ClaudeModel = (typeof ClaudeModel)[keyof typeof ClaudeModel];
|
|
20
|
+
export declare const OpenAIModel: {
|
|
21
|
+
readonly GPT_4O_MINI_2024_07_18: _OpenAIModel.GPT_4O_MINI_2024_07_18;
|
|
22
|
+
readonly GPT_4O_2024_11_20: _OpenAIModel.GPT_4O_2024_11_20;
|
|
23
|
+
readonly O1_2024_12_17: _OpenAIModel.O1_2024_12_17;
|
|
24
|
+
readonly O3_MINI_2025_01_31: _OpenAIModel.O3_MINI_2025_01_31;
|
|
25
|
+
readonly GPT_4_1_2025_04_14: _OpenAIModel.GPT_4_1_2025_04_14;
|
|
26
|
+
readonly GPT_4_1_MINI_2025_04_14: _OpenAIModel.GPT_4_1_MINI_2025_04_14;
|
|
27
|
+
readonly GPT_4_1_NANO_2025_04_14: _OpenAIModel.GPT_4_1_NANO_2025_04_14;
|
|
28
|
+
readonly O3_2025_04_16: _OpenAIModel.O3_2025_04_16;
|
|
29
|
+
readonly O4_MINI_2025_04_16: _OpenAIModel.O4_MINI_2025_04_16;
|
|
30
|
+
readonly GPT_5_2025_08_07: _OpenAIModel.GPT_5_2025_08_07;
|
|
31
|
+
readonly GPT_5_MINI_2025_08_07: _OpenAIModel.GPT_5_MINI_2025_08_07;
|
|
32
|
+
readonly GPT_5_NANO_2025_08_07: _OpenAIModel.GPT_5_NANO_2025_08_07;
|
|
33
|
+
};
|
|
34
|
+
export type OpenAIModel = (typeof OpenAIModel)[keyof typeof OpenAIModel];
|
|
4
35
|
export declare const AVAILABLE_CLAUDE_MODEL_IDS: ClaudeModel[];
|
|
5
36
|
export declare const DEFAULT_JUDGE_MODEL: string;
|
|
6
37
|
export declare const ClaudeModelSchema: z.ZodEnum<{
|
|
7
38
|
[x: string]: string;
|
|
8
39
|
}>;
|
|
9
40
|
export declare const AVAILABLE_OPENAI_MODEL_IDS: OpenAIModel[];
|
|
41
|
+
/**
|
|
42
|
+
* Models that support the OpenAI Responses API via the Wix AI Gateway.
|
|
43
|
+
* Must match the CHAT_MODEL_TO_RESPONSES_MODEL mapping in the proxy.
|
|
44
|
+
* These models use openai.responses() and support reasoningSummary.
|
|
45
|
+
*/
|
|
46
|
+
export declare const OPENAI_RESPONSES_MODEL_IDS: ReadonlySet<string>;
|
|
10
47
|
export declare const OpenAIModelSchema: z.ZodEnum<{
|
|
11
48
|
[x: string]: string;
|
|
12
49
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.51.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@eslint/js": "^9.39.2",
|
|
22
22
|
"@types/node": "^22.19.3",
|
|
23
|
-
"@wix/ambassador-ds-wix-ai-gateway-v1-prompt": "^1.0.
|
|
23
|
+
"@wix/ambassador-ds-wix-ai-gateway-v1-prompt": "^1.0.312",
|
|
24
24
|
"esbuild": "^0.27.2",
|
|
25
25
|
"eslint": "^9.39.2",
|
|
26
26
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"artifactId": "evalforge-types"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "bb28597153ca0d95163b14d31df77cb2976b74023f77b0b07f5cdee9"
|
|
51
51
|
}
|