01
RAG & LLM engineering
Most RAG projects fail in retrieval, not generation. The model is fine; it was handed three irrelevant chunks and half a table. We spend our time on the part that decides the answer — parsing, chunking, hybrid search, reranking — and we measure it.
What the engagement looks like
- Week 1—2: we build an eval set from your real questions and your real documents. Usually 150—400 pairs, labelled with your subject-matter people.
- Week 3—5: parsing and chunking pass, hybrid retrieval, reranking. Every change scored against the eval set, so improvements are provable.
- Week 6—8: citation enforcement, refusal behaviour, cost and latency tuning, then a staged rollout behind a feature flag.
- Ongoing: the eval suite runs in CI. When you change a prompt or swap a model, you find out before your users do.