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: String
The type of the object.
id: String
Unique identifier for the evaluation run.
eval_id: String
The identifier of the associated evaluation.
status: String
The status of the evaluation run.
model: String
The model that is evaluated, if applicable.
name: String
The name of the evaluation run.
created_at: i64
Unix timestamp (in seconds) when the evaluation run was created.
report_url: String
The 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: EvalApiError
Trait 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