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

Co-authored-by: Fato07 <fato07@users.noreply.github.com>
This commit is contained in:
Sha256_Nulled
2026-06-19 00:24:35 +02:00
committed by GitHub
co-authored by Fato07
parent e782790b15
commit 37f46b8f02
+6 -2
View File
@@ -1,2 +1,6 @@
// Baseline arm: no skill, just the task. // Baseline arm: no skill, with a one-line system prompt so the model doesn't ramble.
module.exports = ({ vars }) => [{ role: 'user', content: vars.task }]; 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 },
];