Documentation Index
Fetch the complete documentation index at: https://ahvn.top/llms.txt
Use this file to discover all available pages before exploring further.
TL;DR:
pip install heavenbase && hb setup is all you need.1. System Requirements
HeavenBase runs on any system with Python — no GPU, server rack, or cluster required.- Operating system: macOS, Linux, Windows. Tested on Windows 11 and macOS Sequoia.
- Python: 3.10 or higher. Tested on Python 3.10 through 3.13.
- Hardware: Standard consumer hardware is sufficient. Some optional dependencies (local LLM serving via Ollama or LM Studio) may have their own hardware preferences, but HeavenBase itself is lightweight.
2. Recommended Software
These tools are entirely optional but make the HeavenBase experience much richer:- Docker — spin up local databases (PostgreSQL, MySQL, Milvus, etc.) for testing or production.
- Portkey or Bifrost — LLM gateways for observability, caching, failover, and key management across multiple providers.
- Ollama or LM Studio — run LLMs and embedding models locally. No API keys, no rate limits, full privacy.
| Category | Backends |
|---|---|
| SQL databases | SQLite, PostgreSQL, MySQL, DuckDB, OceanBase, MsSQL, Oracle, Trino, StarRocks |
| Vector stores | Milvus, LanceDB, Chroma, Pinecone, pgvector |
| Search / text | Elasticsearch |
3. Package manager installation
HeavenBase supports multiple package managers. Choose based on your workflow preferences.HeavenBase is not yet published to PyPI or conda-forge. The commands below show the intended usage for when the first public release ships.
3.1. Install from PyPI
Choose your package manager from any of the following: pip:3.2. Optional extras
Install additional database and development dependencies on demand:| Extra | Contents | When to use |
|---|---|---|
dev | Testing, linting, docs toolchain | Contributor workflows |
interop | Third-party integrations | Data interop with external systems |
sql | All SQL database drivers (PostgreSQL, MySQL, DuckDB, etc.) | Production SQL workloads |
full | All extras combined: dev, interop, sql | Quick setup with everything |
4. Install from source
Clone the repository and install using your preferred method:5. Initialize
Run setup once after installation. It creates the global config store, initializes the LLM cache, and registers a default workspace:~/.heavenbase/. More conveniently, inspect paths anytime with hb pj %/, where % maps to the heavenbase global root folder, ~/.heavenbase/.
hb setup --reset destroys all configuration, cached data, and registered workspaces. This operation is irreversible. Use only when you intend to start from scratch.6. Verify it works
system and chat preset backed by deepseek-v4-flash on OpenRouter — no config file edits needed, just setup your OPENROUTER_API_KEY in the environment and you’re good to go.
Now try a test chat with the default LLM using HeavenBase README file as context:

