assay-core 3.9.1

High-performance evaluation framework for LLM agents (Core)
Documentation
pub mod console;
pub mod json;
pub mod junit;
pub mod progress;
pub mod sarif;
pub mod summary;

use crate::model::TestResultRow;

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RunArtifacts {
    pub run_id: i64,
    pub suite: String,
    pub results: Vec<TestResultRow>,
    /// Seed used for test order randomization (E7.2). Present when run used a seed.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub order_seed: Option<u64>,
    /// Time spent creating per-task runner clones in milliseconds.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub runner_clone_ms: Option<u64>,
}