Revert "benchmarks: add system prompt to baseline arm so it doesn't ramble (closes #126) (#128)" (#175)

This reverts commit 37f46b8f02.
This commit is contained in:
DietrichGebert
2026-06-19 01:44:13 +02:00
committed by GitHub
parent a4e5e479d6
commit 48cdf05a25
+2 -6
View File
@@ -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 }];