provisioning/schemas/platform/configs/ai-service.enterprise.ncl

11 lines
505 B
Plaintext
Raw Normal View History

let ai_schema = import "../schemas/ai-service.ncl" in
{
ai_service | ai_schema.AiServiceConfig = {
server = { host = "0.0.0.0", port = 8082, workers = 16, },
rag = { enabled = true, rag_service_url = "https://rag.provisioning.prod:8083", timeout = 120000, },
mcp = { enabled = true, mcp_service_url = "https://mcp.provisioning.prod:8084", timeout = 120000, },
dag = { max_concurrent_tasks = 50, task_timeout = 1200000, retry_attempts = 5, },
monitoring = { enabled = true, },
},
}