⭐️ Most common anti-patterns, Detectable
| Anti-pattern | Problem | Impact | Fix |
|---|---|---|---|
| Assumed trust in the knowledge source | Assume truth | Amplified errors | Verification |
| ⭐️ ‘RAG will fix disorganized knowledge’ | Poor structure | Bad outputs | Fix knowledge |
| Knowledge retrieval token bloat | Over-fetching | Large token waste | Top-N retrieval and organize knowledge |
| ⭐️ One-size-fits-all chunking | Fixed chunks | Broken semantics | Content-aware |
| Using RAG for whole-document operations | Wrong tool | Structure loss | Use DB/API |
| Ignoring file format implications | Same processing | Lost structure | Format-aware |
| Mixing extraction with processing | Overloaded extractor | Errors | Separate steps |
| Lazy field definitions | Vague schema | Fuzzy field errors | Explicit fields |

