assay-core 5.1.0

High-performance evaluation framework for LLM agents (Core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod serde;
mod types;
mod validation;

pub(crate) use serde::parse_expected_entry;
pub use types::*;
pub(crate) use validation::{
    bind_external_expected_inputs, vacuous_expected_field, validate_test_case_for_execution,
};
pub use validation::{
    has_structured_args_policy_shape, validate_args_policy_value, SEMANTIC_SIMILARITY_EPSILON,
};

#[cfg(test)]
mod tests;