- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
10 lines
432 B
Plaintext
10 lines
432 B
Plaintext
let ai_schema = import "../schemas/ai-service.ncl" in
|
|
{
|
|
ai_service | ai_schema.AiServiceConfig = {
|
|
server = { host = "0.0.0.0", port = 8082, workers = 4, },
|
|
rag = { enabled = true, rag_service_url = "http://rag:8083", timeout = 60000, },
|
|
mcp = { enabled = true, mcp_service_url = "http://mcp-server:8084", timeout = 60000, },
|
|
dag = { max_concurrent_tasks = 10, task_timeout = 600000, retry_attempts = 5, },
|
|
},
|
|
}
|