Skip to main content

EvidenceOutput

Type Alias EvidenceOutput 

Source
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: String

Source identifier (e.g., “arc-agi-3”, “metr-80pct-time-horizon”).

§measurement: String

Measurement identifier within the source.

§value: Value

Measurement 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: u8

Reliability percentile of the measurement.

§provenance: ProvenanceReport

Provenance metadata for the measurement.