diff --git a/src/commands/benchmark-job/run.ts b/src/commands/benchmark-job/run.ts index 58e4ce10..1a228191 100644 --- a/src/commands/benchmark-job/run.ts +++ b/src/commands/benchmark-job/run.ts @@ -326,7 +326,9 @@ export async function runBenchmarkJob(options: RunOptions) { const agentConfigs = parsedAgents.map((agent) => ({ name: agent.name, modelName: agent.model, - timeoutSeconds: options.timeout ? parseInt(options.timeout, 10) : 1800, + timeoutSeconds: options.timeout + ? parseInt(options.timeout, 10) + : undefined, environmentVariables: Object.keys(providedEnvVars).length > 0 ? providedEnvVars : undefined, secrets,