v64

OpenAPI 3.1.0raw.githubusercontent.com2026-08-01176310978.7 KB
prompts

Get Supported Llm Configs

Get supported LLM configs.

get/api/v1/prompts/llms/supported

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 LLM config is deprecated and should not be used.

Example response

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