OpenAPI 3.1.0raw.githubusercontent.com2026-08-20176312994.0 KB

f829ded48985

prompts

Get Supported Llm Configs

Get supported LLM configs.

Each config's status is resolved against the current date. Retired models are omitted unless they match selected_model, so a saved config still referencing a retired model can render it as a locked field.

get/api/v1/prompts/llms/supported

Query parameters

selected_modelstring nullable

Response

Successful Response

provider'anthropic' | 'azure_openai' | 'google' | 'openai'

LLM API provider.

modelstring

Name of the model. Must match the deployment name in Azure AI Studio.

display_namestring required

Display name of the model. This is used for display purposes in the Console UI.

versionstring nullable

Deprecated model version retained for backward compatibility.

api_versionstring nullable

Version of the provider's API.

deprecatedboolean required

Whether the model is in the deprecation warning window.

sunset_datestring date nullable

Date the model becomes retired and can no longer be saved or selected.

removedboolean

Whether the model is force-retired regardless of sunset_date.

fallbackstring nullable

Model substituted at runtime for critical features once this one is retired.

status'active' | 'deprecated' | 'retired'

Effective deprecation state of a model, resolved against a reference date.

Example response

[
  {
    "model": "gpt-4o",
    "display_name": "GPT-4o",
    "version": "2024-05-13",
    "api_version": "2024-06-01"
  }
]