TinyModels/chronos-wiki-corpus
Preview • Updated • 559 • 1
A retrieval-augmented generation (RAG) bot that answers questions about 20th-century history.
Chronos searches a curated knowledge base of historical Wikipedia articles, then uses a language model to generate answers grounded in those sources. It prefers admitting ignorance over hallucinating.
from pipeline import Chronos
bot = Chronos("path/to/model")
print(bot.ask("What caused World War I?"))
The model requires a compatible LLM and tokenizer placed in the same directory.
Part of the TinyModels collection.