- 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/
13 lines
657 B
Plaintext
13 lines
657 B
Plaintext
# RAG System - Solo Mode
|
|
let rag_schema = import "../schemas/rag.ncl" in
|
|
{
|
|
rag | rag_schema.RagConfig = {
|
|
rag = { enabled = true, },
|
|
embeddings = { provider = "local", model = "all-MiniLM-L6-v2", dimension = 384, batch_size = 32, },
|
|
vector_db = { db_type = "memory", namespace = "provisioning-solo", },
|
|
llm = { provider = "ollama", model = "llama3.2", api_url = "http://localhost:11434", temperature = 0.7, max_tokens = 2048, },
|
|
retrieval = { top_k = 5, similarity_threshold = 0.7, reranking = false, hybrid = false, },
|
|
ingestion = { auto_ingest = true, chunk_size = 512, overlap = 50, doc_types = ["md", "txt", "toml"], },
|
|
},
|
|
}
|