pub type EvidenceOutput = EvidenceReport;Expand description
Alias for backward compatibility.
Aliased Type§
pub struct EvidenceOutput {
pub source: String,
pub measurement: String,
pub value: Value,
pub threshold: Option<f64>,
pub floor: Option<f64>,
pub passes_threshold: Option<bool>,
pub below_floor: Option<bool>,
pub reliability_percentile: u8,
pub provenance: ProvenanceReport,
}Fields§
§source: StringSource identifier (e.g., “arc-agi-3”, “metr-80pct-time-horizon”).
measurement: StringMeasurement identifier within the source.
value: ValueMeasurement value (fraction, hours, or other).
threshold: Option<f64>Threshold value for this source (if known).
floor: Option<f64>Floor value for this source (if known).
passes_threshold: Option<bool>Whether value passes threshold.
below_floor: Option<bool>Whether value is below floor.
reliability_percentile: u8Reliability percentile of the measurement.
provenance: ProvenanceReportProvenance metadata for the measurement.