Business playbooks
CRTX is a horizontal RAG platform, so the fastest path to value is mapping its primitives — collections, permissions, evals — onto a specific business workflow. This page is a set of concrete playbooks. Each names the collection layout, who gets which permission, the retrieval settings to start with, and how to know it's working.
The universal recipe:
One collection per knowledge domain → curate documents → give the right people
queryoringestlinks → watch the eval dashboard → tune retrieval until faithfulness and relevance are where you need them.
#1. Customer support & internal help desk
Problem. Agents (or customers) waste time hunting through product docs, past tickets, and policy PDFs.
- Collection layout: one collection per product line or per policy domain.
- Ingest: product manuals (PDF), help-center pages (URLs), policy docs (DOCX), a CSV export of resolved-ticket Q&A.
- Permissions:
querylinks to all agents; aningestlink to the docs team. - Retrieval:
similarityto start; enable reranking once volume grows — support questions are precise and benefit from cross-encoder ranking. - Win condition: rising faithfulness on the dashboard, falling average handle time. Use the worst-queries view to find the questions your docs don't actually answer, then write those docs.
Deployment note. To put this on a public help site, expose a scoped, read-only entry point rather than user JWTs — see the embeddable widget and API-key design in Programmatic access.
#2. Sales enablement & RFP response
Problem. Reps need instant, accurate answers about the product, pricing tiers, security posture, and competitive positioning — with sources they can trust in front of a customer.
- Collection layout: "Sales Knowledge" (decks, one-pagers, pricing), "Security & Compliance" (SOC 2, DPAs, questionnaires), "Competitive."
- Ingest: PPTX decks (slide-per-chunk keeps talk tracks intact), pricing XLSX, compliance PDFs.
- Permissions:
queryto the whole revenue org;ingestto sales ops/enablement. - Retrieval:
threshold(≥0.70) for the compliance collection — you want "I don't have that documented" over a confident wrong answer in an RFP. - Win condition: reps self-serve answers with citations; RFP turnaround drops. Every answer's sources are auditable back to the source document.
#3. Legal, contracts & policy Q&A
Problem. Reviewing contracts and answering "what does our standard MSA say about X?" is slow and repetitive.
- Collection layout: one collection per contract family or matter.
- Ingest: executed agreements and templates (PDF/DOCX). Multimodal extraction captures tables (fee schedules, SLAs) as structured Markdown.
- Permissions: tightly held —
queryto the legal team only, per-matter collections for isolation. - Retrieval:
mmr— legal docs repeat boilerplate; MMR avoids returning five copies of the same clause. RaiseNEIGHBOR_WINDOWso clauses aren't cut mid-sentence. - Win condition: faithful, cited answers that link straight to the governing clause. Always keep a human in the loop for legal conclusions — evals are a triage signal, not counsel.
#4. Internal knowledge base / employee onboarding
Problem. Institutional knowledge lives in scattered wikis, Slack threads, and PDFs; new hires can't find anything.
- Collection layout: "Company Handbook," "Engineering Runbooks," per-team spaces.
- Ingest: handbook (Markdown/DOCX), runbooks, benefits PDFs, intranet URLs.
- Permissions:
querylink to all employees;ingestto each team's owners so their space stays current. - Retrieval:
similaritywithNEIGHBOR_WINDOW=1for readable, coherent answers. - Win condition: "how do I…" questions get answered instantly with a link to the source of truth; fewer interruptions to senior staff.
#5. Research, analysis & due diligence
Problem. Analysts must synthesize large document sets (filings, reports, data-room contents) under time pressure.
- Collection layout: one collection per deal, company, or research topic.
- Ingest: 10-Ks and reports (multimodal PDF pulls out the financial tables and chart descriptions), spreadsheets, market-research URLs.
- Permissions: per-deal collections; analysts share the exact chat transcript (with sources) to partners/decision-makers via chat sharing.
- Retrieval: higher Top-K for broad synthesis questions;
mmrfor diversity across a large corpus. - Win condition: hours of reading compressed into cited answers; the eval trend confirms the corpus actually supports the conclusions.
#6. Product & operations analytics on documents
Problem. Ops teams need to query structured exports (CSV/XLSX) conversationally without writing SQL.
- Ingest: CSV/XLSX exports. Each row becomes a chunk carrying its column headers, so "what's the status of order 10432?" retrieves exactly that row.
- Permissions:
queryto the ops team;ingestto whoever refreshes the export. - Retrieval:
thresholdfor precise row lookups. - Win condition: non-technical staff answer their own data questions; re-ingest the refreshed export (deterministic IDs overwrite cleanly).
#Choosing your starting configuration
| Your priority | Strategy | Top-K | Reranking | Neighbour window |
|---|---|---|---|---|
| Balanced default | similarity | 5 | off | 1 |
| Precision / compliance | threshold | 4 | on | 1 |
| Diverse large corpora | mmr | 6–8 | (n/a) | 1–2 |
| Precise fact lookup | similarity | 4 | on | 0–1 |
| Broad synthesis | similarity/mmr | 8+ | on | 2 |
Then let the Evaluation dashboard tell you what to change.
#Rolling it out
- Pilot with one team and one collection. Prove the quality loop on real questions before expanding.
- Assign a curator. RAG quality tracks content quality — give each collection an owner responsible for what's in it.
- Standardize permissions. Decide your
queryvsingestpolicy up front. - Automate ingestion for living corpora using the API (see Programmatic access) so the knowledge base never goes stale.
- Review the worst-queries list weekly. It's the shortest path to a better knowledge base.
For putting CRTX in front of customers or inside another team's infrastructure, see Self-hosting & deploying in your environment.