You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieve spans with their evaluation metrics for a given experiment. Returns spans only, with no summary metrics and no pagination. Deprecated in favor of ``ListLLMObsExperimentEventsV3``.
2346
+
2347
+
:param experiment_id: The ID of the LLM Observability experiment.
2348
+
:type experiment_id: str
2349
+
:rtype: LLMObsExperimentSpansResponse
2350
+
"""
2351
+
kwargs: Dict[str, Any] = {}
2352
+
kwargs["experiment_id"] =experiment_id
2353
+
2354
+
warnings.warn("list_llm_obs_experiment_events_v1 is deprecated", DeprecationWarning, stacklevel=2)
Retrieve spans and experiment-level summary metrics for a given experiment. Returns the full events payload without pagination. Deprecated: use ``ListLLMObsExperimentEventsV3`` instead.
2364
+
2365
+
:param experiment_id: The ID of the LLM Observability experiment.
2366
+
:type experiment_id: str
2367
+
:rtype: LLMObsExperimentEventsV2Response
2368
+
"""
2369
+
kwargs: Dict[str, Any] = {}
2370
+
kwargs["experiment_id"] =experiment_id
2371
+
2372
+
warnings.warn("list_llm_obs_experiment_events_v2 is deprecated", DeprecationWarning, stacklevel=2)
:param filter_id: Filter experiments by experiment ID. Can be specified multiple times.
2271
2400
:type filter_id: str, optional
2272
-
:param page_cursor: Use the Pagination cursor to retrieve the next page of results.
2401
+
:param filter_name: Filter experiments by their exact run name.
2402
+
:type filter_name: str, optional
2403
+
:param filter_experiment: 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.
2404
+
:type filter_experiment: str, optional
2405
+
:param filter_metadata: Filter by JSONB metadata containment. Provide a JSON object string where
2406
+
experiments whose metadata contains all specified key-value pairs are returned.
2407
+
For example: ``{"commit":"abc123","branch":"main"}``.
2408
+
:type filter_metadata: str, optional
2409
+
:param filter_parent_experiment_id: 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.
2410
+
:type filter_parent_experiment_id: str, optional
2411
+
:param filter_is_deleted: When ``true`` , return only soft-deleted experiments. Defaults to ``false``.
2412
+
:type filter_is_deleted: bool, optional
2413
+
:param include_user_data: When ``true`` , enrich each experiment with its author's user data in the ``author`` field.
2414
+
:type include_user_data: bool, optional
2415
+
:param include_dataset_names: When ``true`` , enrich each experiment with its dataset name in the ``dataset_name`` field.
2416
+
:type include_dataset_names: bool, optional
2417
+
:param page_cursor: Use the pagination cursor returned in ``meta.after`` to retrieve the next page of results.
2273
2418
:type page_cursor: str, optional
2274
-
:param page_limit: Maximum number of results to return per page.
2419
+
:param page_limit: Maximum number of results to return per page. Values above 5000 are clamped
0 commit comments