Install and initialize
- Grab an API key from app.hydradb.com
Fast path: create, ingest, query
Create a database, add one memory to the default collection, wait for indexing, then query it.What you have built
You have built the full retrieval loop: create an isolated workspace, ingest context, wait for indexing, query it, and pass the returned context to an LLM. HydraDB handles parsing, chunking, embedding, graph construction, and hybrid retrieval; your application sends the query and gets back the right slice of context. Steps 1 and 3 are asynchronous(runs in background) - HydraDB provisions infrastructure and indexes your content in the background, so each one needs a short polling loop. Steps 2, 4, and 5 run in real time. The same loop scales as your corpus grows; nothing in the code changes between 10 documents and 10,000.You’re done
That’s the full HydraDB v2 loop: create a database, ingest knowledge and memories, verify processing, query, and feed the result to an LLM. Everything else in HydraDB - metadata filters, collections, graph traversal, forceful relations - layers on top of this foundation.Where to go next
Stuck? Reach out at [email protected].