/** * Single dataset item with input and optional expected output. */ export type DatasetItemInput = { input: string; expected_output?: string | null; };