Interface LLMObservabilityApiListLLMObsExperimentsRequest

Hierarchy

  • LLMObservabilityApiListLLMObsExperimentsRequest

Properties

filterDatasetId?: string

Filter experiments by dataset ID.

filterExperiment?: string

Filter by logical experiment name. This is the name field set when creating an experiment through POST /experiments. Returns all experiment runs that share the same name, enabling cross-commit and cross-branch comparisons.

filterId?: string

Filter experiments by experiment ID. Can be specified multiple times.

filterIsDeleted?: boolean

When true, return only soft-deleted experiments. Defaults to false.

filterMetadata?: string

Filter by JSONB metadata containment. Provide a JSON object string where experiments whose metadata contains all specified key-value pairs are returned. For example: {"commit":"abc123","branch":"main"}.

filterName?: string

Filter experiments by their exact run name.

filterParentExperimentId?: string

Filter experiments by the ID of their parent (baseline) experiment. Returns all experiments that were run against the given baseline. Can be specified multiple times.

filterProjectId?: string

Filter experiments by project ID. Required if filter[dataset_id] is not provided.

includeDatasetNames?: boolean

When true, enrich each experiment with its dataset name in the dataset_name field.

includeUserData?: boolean

When true, enrich each experiment with its author's user data in the author field.

pageCursor?: string

Use the pagination cursor returned in meta.after to retrieve the next page of results.

pageLimit?: number

Maximum number of results to return per page. Values above 5000 are clamped to 5000. Defaults to 5000.

Generated using TypeDoc