contentstack · Schema

LlmConfig

Custom LLM provider configuration for a Brand Kit.

Properties

Name Type Description
provider string Name of the LLM provider (e.g., openai, anthropic, azure_openai).
model string The specific LLM model to use for content generation.
api_key_configured boolean Indicates whether a valid API key has been configured.
created_at string ISO 8601 timestamp when the LLM configuration was set.
View JSON Schema on GitHub

JSON Schema

contentstack-llmconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LlmConfig",
  "title": "LlmConfig",
  "type": "object",
  "description": "Custom LLM provider configuration for a Brand Kit.",
  "properties": {
    "provider": {
      "type": "string",
      "description": "Name of the LLM provider (e.g., openai, anthropic, azure_openai)."
    },
    "model": {
      "type": "string",
      "description": "The specific LLM model to use for content generation."
    },
    "api_key_configured": {
      "type": "boolean",
      "description": "Indicates whether a valid API key has been configured."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the LLM configuration was set."
    }
  }
}