/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Read shape for a dataset item. * * ``trace_input`` / ``trace_output`` are present whenever ``source_trace_id`` * is set (values may be ``null`` if the trace can't be resolved); the keys * are omitted otherwise. */ export type DatasetItem = { id: string; input: any; expected_output?: any; metadata?: Record; status?: string | null; source_trace_id?: string | null; source_observation_id?: string | null; created_at: string; updated_at: string; trace_input?: any; trace_output?: any; };