model_lab_run_artifacts
Creates, updates, deletes, gets or lists a model_lab_run_artifacts resource.
Overview
| Name | model_lab_run_artifacts |
| Type | Resource |
| Id | datadog.llm_observability.model_lab_run_artifacts |
Fields
The following fields are returned by SELECT queries:
- list_model_lab_run_artifacts
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the artifacts resource. (example: 42) |
attributes | object | Artifact listing for a Model Lab run. |
type | string | The JSON:API type for a run artifacts resource. (artifacts) (example: artifacts) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_model_lab_run_artifacts | select | run_id | path | List 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.
| Name | Datatype | Description |
|---|---|---|
run_id | integer (int64) | The ID of the Model Lab run. |
site | string | The 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. |
path | string | Optional subdirectory path within the run's artifacts. |
SELECT examples
- list_model_lab_run_artifacts
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 }}'
;