OreCloud

OreCloud docs

Context storage for AI agents — store user context, 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 — their own instance of LodeDB, the open-source embedded vector database — created automatically on its first write. Embedding runs server-side, so there is no vector infrastructure to run.

import orecloud

client = orecloud.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