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.3.tar.gz (82.2 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.3-py3-none-any.whl (92.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: readanybook-0.1.3.tar.gz
  • Upload date:
  • Size: 82.2 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.3.tar.gz
Algorithm Hash digest
SHA256 9dc744efcbb0ccf25df71ea4078e934b592339270f69a8aa64f12bd47dcec358
MD5 630ce179c549d8f0c38e73f125d6fc41
BLAKE2b-256 d243ecbae361a241760665f67ca1e8915bd075bf6601409a5d2e0b78cd30b6b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: readanybook-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 92.7 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c7f8a0af973346f76a9c61a89fa274f06163c8d8e48f1130a6e8755a9c7a951d
MD5 e53d5f60001b56be2d4ed7b190399ef2
BLAKE2b-256 d71826efae700e486389a1c4c20933faec64112714d071abef411f7313d72826

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