OreCloud

OreCloud docs

Context storage for AI agents. Store user context and recall it as a prompt-ready block.

OreCloud is a managed memory store for agentic apps. Each end user of your app gets their own store, created automatically on its first write. A store is their own instance of LodeDB, the open-source embedded vector database. Embedding runs server-side, so there is no vector infrastructure to run.

from lodedb.cloud import Client

client = Client()
memory = client.store("user-42")
memory.add("likes hiking near Seattle")
context = memory.context_block("plan my weekend")

For LLMs

These docs are also served in machine-friendly renderings: /llms.txt (index), /llms-full.txt (everything as one markdown document), and any page as raw markdown by appending .md to its URL.

On this page