@wix/evalforge-evaluator 0.134.0 → 0.136.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 +2 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +2 -1
- package/build/index.mjs.map +2 -2
- package/package.json +5 -5
package/build/index.mjs
CHANGED
|
@@ -3031,7 +3031,6 @@ async function executeWithOpenCode(skills, scenario, options) {
|
|
|
3031
3031
|
hasAiGatewayHeaders: !!options.aiGatewayHeaders,
|
|
3032
3032
|
model: options.model
|
|
3033
3033
|
});
|
|
3034
|
-
const startTime = /* @__PURE__ */ new Date();
|
|
3035
3034
|
const maxTurns = options.maxTurns ?? 10;
|
|
3036
3035
|
const sdkTimeoutMs = Math.max(3e5, maxTurns * 6e4);
|
|
3037
3036
|
const { env, providerID, modelID } = await buildOpenCodeEnv({
|
|
@@ -3043,6 +3042,7 @@ async function executeWithOpenCode(skills, scenario, options) {
|
|
|
3043
3042
|
mcps: options.mcps,
|
|
3044
3043
|
cwd: options.cwd
|
|
3045
3044
|
});
|
|
3045
|
+
const startTime = /* @__PURE__ */ new Date();
|
|
3046
3046
|
const traceContext = options.traceContext;
|
|
3047
3047
|
if (traceContext) {
|
|
3048
3048
|
emitTraceEvent(
|
|
@@ -4610,6 +4610,7 @@ async function runAgentWithContext(config, evalRunId2, scenario, evalData, workD
|
|
|
4610
4610
|
targetName,
|
|
4611
4611
|
scenarioId: scenario.id,
|
|
4612
4612
|
scenarioName: scenario.name,
|
|
4613
|
+
triggerPrompt: scenario.triggerPrompt,
|
|
4613
4614
|
modelConfig: resolvedModelConfig,
|
|
4614
4615
|
duration: durationMs,
|
|
4615
4616
|
outputText,
|