integration_models
Creates, updates, deletes, gets or lists an integration_models resource.
Overview
| Name | integration_models |
| Type | Resource |
| Id | datadog.llm_observability.integration_models |
Fields
The following fields are returned by SELECT queries:
- list_llmobs_integration_models
| Name | Datatype | Description |
|---|---|---|
id | string | Unique identifier for the model entry. (example: gpt-4o) |
model_id | string | Provider-specific model identifier used in inference calls. (example: gpt-4o) |
integration_display_name | string | Human-readable name of the LLM provider integration. (example: OpenAI) |
model_display_name | string | Human-readable model name. (example: GPT-4o) |
provider_display_name | string | Human-readable name of the underlying model provider. (example: OpenAI) |
has_access | boolean | Whether the account has access to this model. |
integration | string | The name of the LLM provider integration. (example: openai) |
json_schema | boolean | Whether the model supports structured output via JSON schema. |
provider | string | The underlying model provider. (example: openai) |
region_prefix_overrides | object | Map of region-specific model ID prefix overrides. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_llmobs_integration_models | select | integration, account_id | Retrieve the list of models available for the specified LLM provider integration and account. |
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 |
|---|---|---|
account_id | string | The ID of the integration account. (example: account-abc123) |
integration | string | The name of the LLM integration. |
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. |
SELECT examples
- list_llmobs_integration_models
Retrieve the list of models available for the specified LLM provider integration and account.
SELECT
id,
model_id,
integration_display_name,
model_display_name,
provider_display_name,
has_access,
integration,
json_schema,
provider,
region_prefix_overrides
FROM datadog.llm_observability.integration_models
WHERE integration = '{{ integration }}' -- required
AND account_id = '{{ account_id }}' -- required
;