deepstrike-sdk 0.2.41

DeepStrike Rust SDK — agent framework built on deepstrike-core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared attempt-evaluation value types.

pub use deepstrike_core::harness::eval::{Criterion, CriterionResult};

/// Quality judgment is independent of the attempt's runtime termination status.
#[derive(Debug, Clone)]
pub struct Verdict {
    pub passed: bool,
    pub overall_score: f32,
    pub feedback: String,
    pub details: Vec<CriterionResult>,
}