pub struct EvalCase {
pub prompt: String,
pub expected: String,
}Expand description
A single evaluation case — prompt + expected output.
Fields§
§prompt: StringThe prompt to send to the agent.
expected: StringThe expected response (for comparison).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EvalCase
impl RefUnwindSafe for EvalCase
impl Send for EvalCase
impl Sync for EvalCase
impl Unpin for EvalCase
impl UnwindSafe for EvalCase
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more