Audit-ready by default
Every build ships a signed manifest, provenance records, license checks, and benchmark evidence.
Coltex is a production knowledge layer for retrieval-augmented generation. It turns a synthetic document corpus into signed, versioned artifacts—chunks, embeddings, graph edges, metadata, benchmarks, and manifests—so teams can ship RAG systems with traceable data instead of one-off indexing scripts.
What Coltex is
Coltex is the data and retrieval layer: document corpus, export pipeline, vector index, graph traversal, benchmarks, and compliance evidence. Bring your own chat interface, model host, API server, and deployment workflow.
Why it is better
Every build ships a signed manifest, provenance records, license checks, and benchmark evidence.
Chunks, embeddings, metadata filters, graph links, and re-ranking work together as one retrieval layer.
Stable artifact paths and make targets make local validation and cluster builds follow the same workflow.
Artifact set
data/product/chunks/chunks.jsonl
Text segments sized for vector search with typed metadata attached.
data/product/embeddings/embeddings.jsonl
Sentence-transformer vectors for loading into the retrieval index.
data/product/graph/edges.jsonl
Typed relationships such as depends_on and see_also for expansion.
data/product/manifest.json
Build metadata and SHA-256 checksums for distribution review.
Retrieval flow
Encode query embedding
Search the vector index
Apply metadata filters
Expand through graph links
Re-rank and assemble context
Quality gates
Product exports run duplication checks, metadata validation, retrieval evaluation, license review, and provenance audits before distribution.
make validate-product
make audit-distribution
make evaluate
Build tiers
Local validation build with 10,000 documents.
make product-premium-smokeFull configured premium dataset export.
make product-premiumStreaming generation for distributed compute.
make product-hyperQuickstart
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
make product-premium-smoke
make index
python3 -m brain retrieve "What is retrieval-augmented generation for code?" --context