Skip to main content

A RAG-based cheat sheet generator for books and papers

Project description

ReadAnyBook ๐Ÿ“š

A RAG-based cheat sheet generator that transforms books and papers into structured, 12-page LaTeX cheat sheets.

Features

  • Multi-format Document Support: PDF, EPUB, HTML, LaTeX, Markdown
  • Intelligent Chunking: Math-aware and code-aware text splitting
  • Hybrid Retrieval: Dense embeddings + BM25 with reciprocal rank fusion
  • Multi-pass Generation: Separate extraction for concepts, formulas, algorithms, and models
  • LaTeX Output: Professional cheat sheets compiled to PDF
  • Multiple LLM Backends: HuggingFace, Ollama, vLLM, OpenAI-compatible APIs
  • Vector Store Options: ChromaDB, Qdrant, Weaviate

Quick Start

Installation

# Basic installation
pip install readanybook

# With CLI support
pip install readanybook[cli]

# With all features
pip install readanybook[all]

From Source

git clone https://github.com/readanybook/readanybook.git
cd readanybook
pip install -e ".[dev]"

Usage

Command Line

# Generate a cheat sheet from a PDF
read-any-book build document.pdf -o cheatsheet.pdf

# Use a specific profile
read-any-book build document.pdf --profile math_paper

# Index a document
read-any-book index document.pdf --collection my_collection

# Search indexed documents
read-any-book search "gradient descent" --collection my_collection

Python API

from readanybook import CheatSheetPipeline, Settings

# Initialize pipeline
settings = Settings()
pipeline = CheatSheetPipeline(settings)

# Process document
pipeline.ingest("textbook.pdf")
pipeline.index(collection_name="textbook")

# Generate cheat sheet
content = pipeline.generate_content()
cheat_sheet = pipeline.build(content, "output/cheatsheet.pdf")

print(f"Generated: {cheat_sheet.pdf_path}")

REST API

# Start the API server
uvicorn readanybook.api:app --host 0.0.0.0 --port 8000

# Upload a document
curl -X POST "http://localhost:8000/upload" \
  -F "file=@document.pdf" \
  -F "collection_name=my_docs"

# Generate cheat sheet
curl -X POST "http://localhost:8000/generate" \
  -H "Content-Type: application/json" \
  -d '{"collection_name": "my_docs", "title": "My Cheat Sheet"}'

Configuration

Create a config.yaml file or use environment variables:

# Embedding model
embedding:
  model_name: "BAAI/bge-base-en-v1.5"
  device: "cuda"

# Vector store
vectordb:
  store_type: "chroma"
  persist_directory: "./data/chroma"

# LLM settings
llm:
  backend: "ollama"
  model_name: "llama3:8b"

# Retrieval
retrieval:
  mode: "hybrid"
  top_k: 15
  
# LaTeX output
latex:
  columns: 2
  font_size: 10
  paper_size: "a4paper"

Configuration Profiles

Use built-in profiles for different document types:

# For technical books
read-any-book build book.pdf --profile technical_book

# For math papers
read-any-book build paper.pdf --profile math_paper

# For non-technical books
read-any-book build novel.pdf --profile nontechnical_book

Architecture

readanybook/
โ”œโ”€โ”€ core/           # Domain logic
โ”‚   โ”œโ”€โ”€ ingestion.py    # Document parsing
โ”‚   โ”œโ”€โ”€ chunking.py     # Text splitting
โ”‚   โ”œโ”€โ”€ indexing.py     # Embedding & indexing
โ”‚   โ”œโ”€โ”€ retrieval.py    # Hybrid retrieval
โ”‚   โ”œโ”€โ”€ models.py       # LLM clients
โ”‚   โ”œโ”€โ”€ prompts.py      # Prompt templates
โ”‚   โ””โ”€โ”€ pipeline.py     # Main orchestrator
โ”œโ”€โ”€ generation/     # Content generation
โ”‚   โ”œโ”€โ”€ concepts.py     # Concept extraction
โ”‚   โ”œโ”€โ”€ formulas.py     # Formula extraction
โ”‚   โ”œโ”€โ”€ algorithms.py   # Algorithm synthesis
โ”‚   โ”œโ”€โ”€ models_theory.py # Model summarization
โ”‚   โ””โ”€โ”€ latex_builder.py # LaTeX generation
โ”œโ”€โ”€ evaluation/     # Quality metrics
โ”‚   โ”œโ”€โ”€ rag_eval.py     # RAG evaluation
โ”‚   โ””โ”€โ”€ metrics.py      # Content metrics
โ”œโ”€โ”€ infra/          # Infrastructure
โ”‚   โ”œโ”€โ”€ settings.py     # Configuration
โ”‚   โ”œโ”€โ”€ vectordb.py     # Vector stores
โ”‚   โ”œโ”€โ”€ logging.py      # Logging
โ”‚   โ””โ”€โ”€ tracing.py      # Observability
โ”œโ”€โ”€ api/            # REST API
โ”œโ”€โ”€ cli/            # Command line interface
โ”œโ”€โ”€ templates/      # LaTeX templates
โ””โ”€โ”€ config/         # Default configs

Requirements

  • Python 3.10+
  • PyTorch 2.0+
  • LaTeX distribution (for PDF compilation)
    • TeX Live, MiKTeX, or Tectonic

LaTeX Installation

# Ubuntu/Debian
sudo apt install texlive-full

# macOS
brew install --cask mactex

# Or use Tectonic (lightweight)
cargo install tectonic

Development

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Format code
black readanybook tests
isort readanybook tests

# Type check
mypy readanybook

# Lint
ruff check readanybook

Examples

See the examples directory for:

  • Processing academic papers
  • Creating ML textbook cheat sheets
  • Custom template usage
  • API integration examples

License

MIT License - see LICENSE for details.

Contributing

Contributions welcome! Please read CONTRIBUTING.md first.

Acknowledgments

  • Built with ๐Ÿค— Transformers, ChromaDB, and FastAPI
  • Inspired by the need for better study materials

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

readanybook-0.1.6.tar.gz (82.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

readanybook-0.1.6-py3-none-any.whl (92.9 kB view details)

Uploaded Python 3

File details

Details for the file readanybook-0.1.6.tar.gz.

File metadata

  • Download URL: readanybook-0.1.6.tar.gz
  • Upload date:
  • Size: 82.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for readanybook-0.1.6.tar.gz
Algorithm Hash digest
SHA256 4683a3cbc375c9a797007f78ba7991d47cf726ae5fb17cc221cdf4c13fe48d48
MD5 f36590e1ecbce156826512bc63dd55b4
BLAKE2b-256 a5b73ea5ae57b5034c49ad4a19a95527e58c72ccb41b9770b7966fbca448f903

See more details on using hashes here.

File details

Details for the file readanybook-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: readanybook-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for readanybook-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7ed0946006ba01fcc5580e48d2b4de26c73ff69b4439ef8aa34bf38205d2755b
MD5 ea03733d74ab41929a33819f2c91d775
BLAKE2b-256 afb5323a3c982ba7158d769999834440b6efe4c6e9bb6510d16cb48433a37e6b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page