From b21b979a7b6e1400dd3756d2dab928e46730fc4c Mon Sep 17 00:00:00 2001 From: Emeriko Date: Fri, 19 Jun 2026 01:43:53 +0200 Subject: [PATCH] Revert "benchmarks: add system prompt to baseline arm so it doesn't ramble (closes #126) (#128)" This reverts commit 37f46b8f02a591365fa217a0a2ea2f49108af970. --- benchmarks/arms/baseline.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/benchmarks/arms/baseline.js b/benchmarks/arms/baseline.js index 7edada0..1469035 100644 --- a/benchmarks/arms/baseline.js +++ b/benchmarks/arms/baseline.js @@ -1,6 +1,2 @@ -// Baseline arm: no skill, with a one-line system prompt so the model doesn't ramble. -const system = 'Provide just one example for any given task, and no commentary or usage examples.'; -module.exports = ({ vars }) => [ - { role: 'system', content: system }, - { role: 'user', content: vars.task }, -]; +// Baseline arm: no skill, just the task. +module.exports = ({ vars }) => [{ role: 'user', content: vars.task }];