Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54625e3e04 |
@@ -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 },
|
||||||
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user