10 lines
439 B
Plaintext
10 lines
439 B
Plaintext
|
|
let ai_schema = import "../schemas/ai-service.ncl" in
|
||
|
|
{
|
||
|
|
ai_service | ai_schema.AiServiceConfig = {
|
||
|
|
server = { host = "127.0.0.1", port = 8082, workers = 2, },
|
||
|
|
rag = { enabled = true, rag_service_url = "http://localhost:8083", timeout = 30000, },
|
||
|
|
mcp = { enabled = false, mcp_service_url = "http://localhost:8084", timeout = 30000, },
|
||
|
|
dag = { max_concurrent_tasks = 3, task_timeout = 300000, retry_attempts = 3, },
|
||
|
|
},
|
||
|
|
}
|