Write a list of Trial objects to a JSONL (JSON Lines) file. Each trial is written as a single JSON object on its own line.
Examples
if (FALSE) { # \dontrun{
trials <- list(
create_trial("BootstrapFewShot", list(k = 4)),
create_trial("BootstrapFewShot", list(k = 8))
)
write_trials_jsonl(trials, "trials.jsonl")
} # }
