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

10 lines
437 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 = 8, },
rag = { enabled = false, rag_service_url = "http://localhost:8083", timeout = 30000, },
mcp = { enabled = true, mcp_service_url = "http://mcp-cicd:8084", timeout = 30000, },
dag = { max_concurrent_tasks = 20, task_timeout = 300000, retry_attempts = 2, },
},
}