Skip to main content

model_lab_run_artifacts

Creates, updates, deletes, gets or lists a model_lab_run_artifacts resource.

Overview

Namemodel_lab_run_artifacts
TypeResource
Iddatadog.llm_observability.model_lab_run_artifacts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier of the artifacts resource. (example: 42)
attributesobjectArtifact listing for a Model Lab run.
typestringThe JSON:API type for a run artifacts resource. (artifacts) (example: artifacts)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_model_lab_run_artifactsselectrun_idpathList artifact files for a specific Model Lab run.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
run_idinteger (int64)The ID of the Model Lab run.
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.
pathstringOptional subdirectory path within the run's artifacts.

SELECT examples

List artifact files for a specific Model Lab run.

SELECT
id,
attributes,
type
FROM datadog.llm_observability.model_lab_run_artifacts
WHERE run_id = '{{ run_id }}' -- required
AND path = '{{ path }}'
;