Quick Start Guide
Get OpenDocuments running in under 5 minutes.
Prerequisites
Install
bash
npm install -g opendocumentsInitialize
bash
opendocuments initThe wizard will:
- Detect your hardware and recommend an LLM
- Auto-detect Ollama and offer to pull missing models
- Generate
opendocuments.config.tsand.env
Start the Server
bash
opendocuments startOpen http://localhost:3000 — you'll see a chat UI, document manager, and admin dashboard.
Index Documents
bash
# Index a local directory
opendocuments index ./docs
# Watch mode (auto-reindex on changes)
opendocuments index ./docs --watchOr drag-and-drop files in the Web UI.
Ask Questions
bash
# Single question
opendocuments ask "How does authentication work?"
# Interactive REPL
opendocuments ask
# With specific profile
opendocuments ask "Compare v2 vs v3 features" --profile preciseNext Steps
- Configuration — customize models, connectors, and security
- Architecture — understand the system design
- Plugin Development — create custom parsers and connectors
- Deployment — Docker and production setup
- TypeScript SDK — programmatic access