From feff84c0eb8706be163eb9568a0fb06c1cdd7ff2 Mon Sep 17 00:00:00 2001 From: Christopher Tso Date: Wed, 22 Apr 2026 02:55:20 +0200 Subject: [PATCH] fix(cli): drop outputFormat from interactive wizard rawOptions The interactive `agentv eval run` wizard hard-coded `outputFormat: 'jsonl'` in the rawOptions it forwarded to runEvalCommand. Since `--output-format` is deprecated (JSONL is always used), this made the wizard trip its own deprecation warning on every run: Warning: --output-format is deprecated. The artifact directory always uses JSONL. Remove the field so the warning only fires when the user actually passes `--output-format` on the CLI. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/cli/src/commands/eval/interactive.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/cli/src/commands/eval/interactive.ts b/apps/cli/src/commands/eval/interactive.ts index 97193f826..41720d76b 100644 --- a/apps/cli/src/commands/eval/interactive.ts +++ b/apps/cli/src/commands/eval/interactive.ts @@ -321,7 +321,6 @@ async function executeConfig(config: InteractiveConfig): Promise { workers: config.workers, dryRun: config.dryRun, cache: config.cache, - outputFormat: 'jsonl', dryRunDelay: 0, dryRunDelayMin: 0, dryRunDelayMax: 0, @@ -361,7 +360,6 @@ async function promptRetryErrors(config: InteractiveConfig, outputPath: string): workers: config.workers, dryRun: config.dryRun, cache: config.cache, - outputFormat: 'jsonl', retryErrors: outputPath, out: outputPath, dryRunDelay: 0,