Documentation
SuperChargeDB
An object-storage-native, multimodal vector + document search engine built on a modern serverless cloud platform. It returns the exact moment, region, passage, or line — not just a document id — behind a single enforcement core that clamps scope, intersects grants, and ACL-filters every result.
What it is#
SuperChargeDB indexes your content as Units — the atom of retrieval (a doc chunk, an image region, a video shot, an audio utterance, a log template). Each Unit carries a Locator so results point at the precise sub-unit span. A query fans out across retrieval planes (text, visual, audio, doc-visual), fuses the ranked lists with Reciprocal Rank Fusion, reranks with a cross-encoder, and returns hits with a full cost/latency trace.
How it works#
- Ingest — content is embedded with managed inference and written to the SQL catalog (filterable/BM25 row) plus the vector index (vector + pushdown metadata).
- Retrieve — a query is embedded, searched against the vector index per plane, and against a catalog FTS5 lexical index, all scope-clamped.
- Fuse & rerank — ranked lists are combined with RRF, then a cross-encoder reranks the survivors.
- Enforce — every candidate passes a per-hit ACL filter before it is ever returned; denied hits are counted, never leaked.
Try it now#
The API is live and seeded with a demo dataset. Use the test token aegis_sk_alice to run your first search:
curl -s -X POST "https://superchargedb.krisch1218.workers.dev/v1/search" \
-H "Authorization: Bearer aegis_sk_alice" \
-H "Content-Type: application/json" \
-d '{"q":"Q3 revenue miss and gross margin","top_k":5}'Base URL & test principals
https://superchargedb.krisch1218.workers.dev. Two seeded principals demonstrate access control: aegis_sk_alice (admin, all scopes, in the finance group) and aegis_sk_bob (read-only, backend scope only). See Authentication.Documentation map#
Prefer a UI?
The console gives you a live playground for hybrid search, planes, and the trace panel — the same enforcement core the API uses.
Launch the console