/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Score } from './Score'; /** * A fully-expanded dataset run item: input/expected/actual + scores. */ export type DatasetRunItem = { id: string; dataset_item_id: string; trace_id: string; observation_id?: string | null; created_at: string; input: any; expected_output: any; actual_output: any; error?: string | null; scores: Array; };