exp 0.1.2

CLI experiment tracker for agent runs, prompt testing, and simulations
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use rusqlite::Connection;

use crate::commands::compare;

pub fn run(conn: &Connection, experiment: &str, format: &str) -> Result<()> {
    // Export is compare with all data and no filters, in the requested format
    compare::run(conn, experiment, None, false, None, &[], None, format)
}