pub struct EvalRun {Show 14 fields
pub object: String,
pub id: String,
pub eval_id: String,
pub status: String,
pub model: String,
pub name: String,
pub created_at: i64,
pub report_url: String,
pub result_counts: EvalRun_ResultCounts,
pub per_model_usage: Vec<EvalRun_PerModelUsage>,
pub per_testing_criteria_results: Vec<EvalRun_PerTestingCriteriaResults>,
pub data_source: EvalRun_DataSource,
pub metadata: Option<Metadata>,
pub error: EvalApiError,
}Expand description
A schema representing an evaluation run.
Fields§
§object: StringThe type of the object.
id: StringUnique identifier for the evaluation run.
eval_id: StringThe identifier of the associated evaluation.
status: StringThe status of the evaluation run.
model: StringThe model that is evaluated, if applicable.
name: StringThe name of the evaluation run.
created_at: i64Unix timestamp (in seconds) when the evaluation run was created.
report_url: StringThe URL to the rendered evaluation run report on the UI dashboard.
result_counts: EvalRun_ResultCounts§per_model_usage: Vec<EvalRun_PerModelUsage>Usage statistics for each model during the evaluation run.
per_testing_criteria_results: Vec<EvalRun_PerTestingCriteriaResults>Results per testing criteria applied during the evaluation run.
data_source: EvalRun_DataSource§metadata: Option<Metadata>§error: EvalApiErrorTrait Implementations§
Auto Trait Implementations§
impl Freeze for EvalRun
impl RefUnwindSafe for EvalRun
impl Send for EvalRun
impl Sync for EvalRun
impl Unpin for EvalRun
impl UnwindSafe for EvalRun
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