Skip to content
RAG Repo

Encyclopaedic & general knowledge

Structured and semi-structured knowledge sources covering broad, general-purpose factual knowledge. The backbone of most RAG systems.

8sources

Encyclopaedic sources are the backbone of most RAG systems, and for good reason. They give broad, general-purpose factual coverage in prose that is already written to be read, which is exactly what you want when a language model needs a reliable passage to ground its answer. If you are building a general assistant and can only add one knowledge base, this is usually the category to reach for first.

The main choice here is between free text and structured data. Encyclopaedia articles give you clean, self-contained prose that chunks well into passages and drops straight into a vector database, the store that lets you search text by meaning rather than exact words. Structured knowledge bases instead give you facts as entities and relationships, which are precise and easy to filter but read awkwardly when handed to a model as-is. Many strong systems use both: prose for explanation, structured facts for exact lookups like dates, populations, or identifiers.

Two things deserve care. First, freshness: some dumps are snapshots taken months ago, so check the date if your users ask about current events. Second, licensing looks simple but is not always. Much of this content is CC BY-SA, meaning you must credit the source and share any adaptations under the same terms, which can matter for a commercial product. Structured extracts sometimes carry different terms again.

The sources below range from full encyclopaedias to the structured knowledge bases built alongside them, so you can pick the shape that fits your pipeline.

Other categories