@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 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(
@@ -4602,6 +4602,7 @@ async function runAgentWithContext(config, evalRunId2, scenario, evalData, workD
4602
4602
  targetName,
4603
4603
  scenarioId: scenario.id,
4604
4604
  scenarioName: scenario.name,
4605
+ triggerPrompt: scenario.triggerPrompt,
4605
4606
  modelConfig: resolvedModelConfig,
4606
4607
  duration: durationMs,
4607
4608
  outputText,