Skip to main content

baseline_files

Function baseline_files 

Source
pub fn baseline_files() -> &'static [(&'static str, &'static str)]
Expand description

The raw embedded baseline files as (file_name, ron_contents) pairs, in sorted (filename) order.

Use this to DUMP the suite as a starting template — write each pair to your own cases directory, then edit the instructions, values, and (in tool_use.ron) the tool names to match your agent:

for (name, contents) in eval_core::baseline_files() {
    std::fs::write(my_suite_dir.join(name), contents)?;
}

The same files back baseline, so what you copy here is exactly what baseline runs.