OpenContracts (Demo)
The open source platform for building knowledge bases that humans and AI agents can work with together.
| Backend CI/CD | |
| Meta |
Most knowledge lives in documents. Contracts, regulations, research papers, policies — the stuff that governs how organizations actually work. That knowledge is usually trapped: locked in PDFs, scattered across drives, understood fully by a handful of people who happened to read the right things at the right time.
OpenContracts started in 2019 with a simple conviction: that knowledge needed to be carefully curated, and that machine learning systems were only as good as the data underneath them. It was built as a platform for human collaborators — lawyers, researchers, analysts — to annotate documents together and produce gold-standard training data.
Those collaborators mostly never came. The platform was too early, the problem too niche, the value too invisible.
Then large language models arrived, and the world suddenly needed exactly what OpenContracts had been building all along: structured, annotated, version-controlled knowledge bases that AI could actually reason over. The collaborators the platform was designed for finally showed up — they just turned out to be AI agents.
Today, OpenContracts is a self-hosted platform where teams build knowledge bases from their documents and where AI agents work alongside humans to search, analyze, and extend that knowledge. The core conviction hasn't changed. The best AI systems still need carefully curated data. The difference is that now, the curation and the AI happen in the same place.
This is not another "chat with your PDFs" tool. OpenContracts treats human annotation as the ground truth. Teams define custom label schemas, annotate documents with precise selections (including multi-page spans), and map relationships between concepts. AI builds on top of that work — it doesn't replace it.
Documents are organized into corpuses — version-controlled collections with folder hierarchies, fine-grained permissions, and full history. Fork a public corpus to build on someone else's annotations. Restore any previous version. Every change is tracked.
This is git for knowledge: you can branch, build, share, and never lose work.
Configurable AI agents can search your documents, query your annotations, and participate in discussions — all grounded in the structured knowledge your team has created. They don't hallucinate in a vacuum; they reason over real, curated data.
@mention an agent in a discussion thread. Ask it to compare clauses across a hundred contracts. Let it surface patterns your team annotated last quarter. The agent's power comes from the quality of the knowledge base underneath it.
Forum-style threaded discussions at every level — global, per-corpus, per-document. @mention documents, corpuses, and AI agents. Upvote the best analysis. Pin critical findings. The conversation happens next to the source material, not in a separate tool.
Make a corpus public. Others fork it, refine the annotations, add documents, and share their improvements. Leaderboards and badges recognize contributors. Analytics show which knowledge bases are gaining traction and where the community is most active.
This is the DRY principle applied to institutional knowledge: annotate once, build on it forever.
git clone https://github.com/JSv4/OpenContracts.git
cd OpenContracts
docker compose -f local.yml up# Apply database migrations first
docker compose -f production.yml --profile migrate up migrate
# Start services
docker compose -f production.yml up -dBrowse the full documentation at jsv4.github.io/OpenContracts or in the repo:
| Guide | Description |
|---|---|
| Quick Start | Get running with Docker in minutes |
| Key Concepts | Core workflows and terminology |
| PDF Data Format | How text maps to PDF coordinates |
| LLM Framework | PydanticAI integration and agents |
| Vector Stores | Semantic search architecture |
| Pipeline Overview | Parser and embedder system |
| Custom Extractors | Build your own data extraction tasks |
| v3.0.0.b3 Release Notes | Latest features and migration guide |
Architecture
OpenContracts uses a standardized format for representing text and layout on PDF pages, enabling portable annotations across tools:
The modular pipeline supports custom parsers, embedders, and thumbnail generators:
Each component inherits from a base class with a defined interface:
- Parsers — Extract text and structure from documents
- Embedders — Generate vector embeddings for search
- Thumbnailers — Create document previews
See the pipeline documentation for details on creating custom components.
OpenContracts collects anonymous usage data to guide development priorities: installation events, feature usage statistics, and aggregate counts. We do not collect document contents, extracted data, user identities, or query contents.
Disable backend telemetry: Set TELEMETRY_ENABLED=False in your Django settings.
Disable frontend analytics: Leave REACT_APP_POSTHOG_API_KEY unset in frontend/public/env-config.js.
- PDF (full layout and annotation support)
- Text-based formats (plaintext, Markdown)
Coming soon: DOCX viewing and annotation powered by Docxodus.
This project builds on work from:
- AllenAI PAWLS — PDF annotation data format and concepts
- NLMatics nlm-ingestor — Document parsing pipeline
AGPL-3.0 — See LICENSE for details.








