diff --git a/docs/config.html b/docs/config.html index 8a513a3a..a5845178 100644 --- a/docs/config.html +++ b/docs/config.html @@ -334,6 +334,45 @@

AuthorizationConfiguration

+

AzureEntraIdConfiguration

+

Microsoft Entra ID authentication attributes for Azure.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldTypeDescription
tenant_idstring +
client_idstring +
client_secretstring +
scopestringAzure Cognitive Services scope for token requests. Override only if +using a different Azure service.

ByokRag

BYOK (Bring Your Own Knowledge) RAG configuration.

@@ -547,6 +586,11 @@

Configuration

+ + +
Quota handlers configuration
azure_entra_id + +

ConversationHistoryConfiguration

@@ -957,6 +1001,11 @@

ModelContextProtocolServer

+ + + + + @@ -980,6 +1029,23 @@

ModelContextProtocolServer

+ + + + + + + + + +
Field string URL of the MCP server
authorization_headersobjectHeaders to send to the MCP server. The map contains the header name +and the path to a file containing the header value (secret). There are 2 +special cases: 1. Usage of the kubernetes token in the header. To +specify this use a string ‘kubernetes’ instead of the file path. 2. +Usage of the client provided token in the header. To specify this use a +string ‘client’ instead of the file path.
timeoutintegerTimeout in seconds for requests to the MCP server. If not specified, +the default timeout from Llama Stack will be used. Note: This field is +reserved for future use when Llama Stack adds timeout support.

PostgreSQLDatabaseConfiguration

diff --git a/docs/config.md b/docs/config.md index 5b6dff7a..99df0eb4 100644 --- a/docs/config.md +++ b/docs/config.md @@ -91,6 +91,20 @@ Authorization configuration. | access_rules | array | Rules for role-based access control | +## AzureEntraIdConfiguration + + +Microsoft Entra ID authentication attributes for Azure. + + +| Field | Type | Description | +|-------|------|-------------| +| tenant_id | string | | +| client_id | string | | +| client_secret | string | | +| scope | string | Azure Cognitive Services scope for token requests. Override only if using a different Azure service. | + + ## ByokRag @@ -153,6 +167,7 @@ Global service configuration. | byok_rag | array | BYOK RAG configuration. This configuration can be used to reconfigure Llama Stack through its run.yaml configuration file | | a2a_state | | Configuration for A2A protocol persistent state storage. | | quota_handlers | | Quota handlers configuration | +| azure_entra_id | | | ## ConversationHistoryConfiguration @@ -353,6 +368,8 @@ Useful resources: | name | string | MCP server name that must be unique | | provider_id | string | MCP provider identification | | url | string | URL of the MCP server | +| authorization_headers | object | Headers to send to the MCP server. The map contains the header name and the path to a file containing the header value (secret). There are 2 special cases: 1. Usage of the kubernetes token in the header. To specify this use a string 'kubernetes' instead of the file path. 2. Usage of the client provided token in the header. To specify this use a string 'client' instead of the file path. | +| timeout | integer | Timeout in seconds for requests to the MCP server. If not specified, the default timeout from Llama Stack will be used. Note: This field is reserved for future use when Llama Stack adds timeout support. | ## PostgreSQLDatabaseConfiguration