diff --git a/src/commands/benchmark-job/run.ts b/src/commands/benchmark-job/run.ts index 98badd7..a0e17f3 100644 --- a/src/commands/benchmark-job/run.ts +++ b/src/commands/benchmark-job/run.ts @@ -205,11 +205,8 @@ async function ensureAgentSecrets( // Resolve benchmark name to ID if needed async function resolveBenchmarkId(benchmarkIdOrName: string): Promise { - // If it looks like an ID (starts with bm_ or similar), return as-is - if ( - benchmarkIdOrName.startsWith("bm_") || - benchmarkIdOrName.startsWith("bmk_") - ) { + // If it looks like a benchmark ID, return as-is + if (benchmarkIdOrName.startsWith("bmd_")) { return benchmarkIdOrName; } @@ -346,7 +343,7 @@ export async function runBenchmarkJob(options: RunOptions) { console.log( `Benchmark job created: ${job.id} (agent timeout = ${agentConfigs[0].timeoutSeconds}s)`, ); - console.log(`Follow the run with rli benchmark-job watch ${job.id}`); + console.log(`Follow the run with "rli benchmark-job watch ${job.id}"`); } else { output(job, { format: options.output, defaultFormat: "json" }); }