2026-05-12 02:23:01 +01:00
|
|
|
let ai_schema = import "../ai-service.ncl" in
|
2026-01-08 09:55:37 +00:00
|
|
|
{
|
|
|
|
|
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, },
|
|
|
|
|
},
|
|
|
|
|
}
|