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. |
JSON Schema
{
"$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."
}
}
}