assay-core 2.17.0

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>,
}