@wix/evalforge-evaluator 0.176.0 → 0.178.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/README.md +2 -0
- package/build/index.js +6 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +6 -2
- package/build/index.mjs.map +2 -2
- package/package.json +5 -5
package/build/index.mjs
CHANGED
|
@@ -2538,6 +2538,8 @@ async function buildOpenCodeEnv(options) {
|
|
|
2538
2538
|
provider,
|
|
2539
2539
|
...Object.keys(agentOverrides).length > 0 ? { agent: { build: agentOverrides } } : {},
|
|
2540
2540
|
permission,
|
|
2541
|
+
// Align with ditto/codegen: LSP post-edit diagnostics can hang remote eval machines.
|
|
2542
|
+
lsp: false,
|
|
2541
2543
|
...mcp ? { mcp } : {},
|
|
2542
2544
|
...instructions ? { instructions } : {}
|
|
2543
2545
|
};
|
|
@@ -2545,7 +2547,8 @@ async function buildOpenCodeEnv(options) {
|
|
|
2545
2547
|
...process.env,
|
|
2546
2548
|
PATH: ensureOpenCodeInPath(process.env.PATH || ""),
|
|
2547
2549
|
OPENCODE_CONFIG_CONTENT: JSON.stringify(config),
|
|
2548
|
-
OPENCODE_DISABLE_LSP_DOWNLOAD: "true"
|
|
2550
|
+
OPENCODE_DISABLE_LSP_DOWNLOAD: "true",
|
|
2551
|
+
OPENCODE_DISABLE_FILETIME_CHECK: "true"
|
|
2549
2552
|
};
|
|
2550
2553
|
return { env, providerID, modelID };
|
|
2551
2554
|
}
|
|
@@ -3718,7 +3721,8 @@ var MODEL_PRICING = {
|
|
|
3718
3721
|
// Google Gemini 3.x — standard pricing up to 200K context tokens
|
|
3719
3722
|
"gemini-3-pro-preview": { input: 2, output: 12 },
|
|
3720
3723
|
"gemini-3-flash-preview": { input: 0.5, output: 3 },
|
|
3721
|
-
"gemini-3.1-pro-preview": { input: 2, output: 12 }
|
|
3724
|
+
"gemini-3.1-pro-preview": { input: 2, output: 12 },
|
|
3725
|
+
"gemini-3.5-flash": { input: 1.5, output: 9 }
|
|
3722
3726
|
};
|
|
3723
3727
|
function extractGatewayCost(step, provider) {
|
|
3724
3728
|
try {
|