pub struct EvalRun {Show 14 fields
pub created_at: i32,
pub data_source: Value,
pub error: EvalApiError,
pub eval_id: String,
pub id: String,
pub metadata: Metadata,
pub model: String,
pub name: String,
pub object: String,
pub per_model_usage: Vec<EvalRunPerModelUsage>,
pub per_testing_criteria_results: Vec<EvalRunPerTestingCriteriaResults>,
pub report_url: String,
pub result_counts: EvalRunResultCounts,
pub status: String,
}Fields§
§created_at: i32Unix timestamp (in seconds) when the evaluation run was created.
data_source: ValueInformation about the run’s data source.
error: EvalApiError§eval_id: StringThe identifier of the associated evaluation.
id: StringUnique identifier for the evaluation run.
metadata: Metadata§model: StringThe model that is evaluated, if applicable.
name: StringThe name of the evaluation run.
object: StringThe type of the object. Always "eval.run".
per_model_usage: Vec<EvalRunPerModelUsage>Usage statistics for each model during the evaluation run.
per_testing_criteria_results: Vec<EvalRunPerTestingCriteriaResults>Results per testing criteria applied during the evaluation run.
report_url: StringThe URL to the rendered evaluation run report on the UI dashboard.
result_counts: EvalRunResultCounts§status: StringThe status of the evaluation run.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EvalRun
impl<'de> Deserialize<'de> for EvalRun
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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