- Documents — Upload files (PDF, Word, text, Markdown) that get indexed for semantic search
- Q&A Pairs — Create structured question-and-answer entries for precise, high-confidence responses
How It Works
IllumiChat uses Retrieval-Augmented Generation (RAG) to connect your documents to your assistants:Upload your documents
Add files to a project. Supported formats include PDF, Word, text, and Markdown.
Automatic processing
IllumiChat extracts the text from your documents and splits it into smaller, meaningful chunks.
Embedding and indexing
Each chunk is converted into a vector embedding — a numerical representation that captures the meaning of the text. These are stored in a vector database for fast retrieval.
User asks a question
When someone sends a message to your assistant, IllumiChat searches the vector database for document chunks relevant to the question.
Supported File Types
| Format | Extension |
|---|---|
| Microsoft Word | .docx |
| Plain Text | .txt |
| Markdown | .md |
Uploading Documents
Create or open a project
Navigate to Projects in the sidebar and create a new project or open an existing one.
Processing Status
| Status | Meaning |
|---|---|
| Pending | The document is queued for processing |
| Processing | Text extraction and indexing are in progress |
| Completed | The document is fully indexed and available to assistants |
| Failed | Something went wrong during processing (try re-uploading) |
Best Practices
Keep documents focused on a single topic
Keep documents focused on a single topic
Documents that cover one topic thoroughly work better than large documents covering many topics. This helps the retrieval system find the most relevant chunks.
Use clear headings and structure
Use clear headings and structure
Well-structured documents with clear headings, bullet points, and short paragraphs produce better search results.
Update documents regularly
Update documents regularly
Keep your knowledge base current by replacing outdated documents. Stale information leads to inaccurate answers.
Test with real questions
Test with real questions
After uploading documents, test your assistant with the kinds of questions your users will actually ask.
Organize by topic in separate projects
Organize by topic in separate projects
Group related documents into the same project. Keep product docs in one project, HR policies in another, and sales materials in a third.
Q&A Pairs
Q&A pairs let you curate precise answers for frequently asked questions. When a user’s question closely matches a stored Q&A pair, the assistant returns the curated answer directly — providing more concise, accurate responses than general document retrieval.How Q&A Matching Works
IllumiChat uses a hybrid matching strategy for Q&A pairs:- Direct match — Your question text is embedded and compared semantically against stored Q&A pairs. If the similarity score meets the confidence threshold, the paired answer is returned verbatim.
- RAG fallback — If there is no high-confidence direct match, Q&A content participates in standard document retrieval alongside your uploaded files, so partial or indirect matches can still surface.
Q&A pairs share the same document quota as your uploaded files. Each Q&A pair counts as one knowledge document.
Adding Q&A Pairs
Open a project
Navigate to Projects in the sidebar and open the project you want to add Q&A pairs to.
Go to the Q&A tab
Click the Q&A tab in the knowledge base. This is the fourth tab alongside Files, Websites, and Text.
Managing Q&A Pairs
From the Q&A tab, you can:- Edit an existing pair to update the question or answer
- Delete pairs that are no longer needed
- View all pairs in a list with the question and a preview of the answer
When to Use Q&A vs. Documents
| Use Case | Recommended Approach |
|---|---|
| A specific question with a precise answer | Q&A pair — The assistant returns the exact answer you wrote |
| Detailed product documentation or guides | Document upload — RAG retrieves relevant sections as needed |
| FAQ content you already have in a document | Both — Upload the document and create Q&A pairs for the most critical questions |
| Policies or procedures with nuance | Document upload — Lets the assistant draw from the full context |
| Quick factual answers (hours, pricing, contact info) | Q&A pair — Ensures accuracy for simple lookups |
Best Practices for Q&A Pairs
Write questions the way your users ask them
Write questions the way your users ask them
Use natural, conversational phrasing. If your users ask “How do I reset my password?” rather than “Password reset procedure,” write the question that way. The semantic matching works best when your stored question mirrors real user queries.
Keep answers concise and complete
Keep answers concise and complete
Write answers that fully address the question without unnecessary detail. If the answer requires a longer explanation, consider linking to a document or guide.
Create variations for important questions
Create variations for important questions
If a critical question can be asked in very different ways, consider adding separate Q&A pairs for each variation to maximize match accuracy.
Review and update regularly
Review and update regularly
As your product or policies change, update your Q&A pairs to stay current. Outdated answers erode user trust.