An example that has been synced to the server

interface ExampleWithId {
    id: string;
    input: Record<string, unknown>;
    metadata?: null | Record<string, unknown>;
    output?: null | Record<string, unknown>;
    splits?: null | string | string[];
    updatedAt: Date;
}

Hierarchy (View Summary)

Properties

id: string
input: Record<string, unknown>
metadata?: null | Record<string, unknown>
output?: null | Record<string, unknown>
splits?: null | string | string[]

Split assignment for this example. Can be:

  • A single string for one split: "train"
  • An array of strings for multiple splits: ["train", "easy"]
  • null for no split assignment
updatedAt: Date