Quickstart

Give any AI system persistent memory in under a minute.

1. Create an account

Sign up at oramemory.com/app/signup. You'll get an API key (om_live_…) shown exactly once — copy it somewhere safe.

Free accounts run local only. To use the managed API (oramemory.com/api/v1) you need a paid plan — see Plans & limits.

2. Install an SDK

pip install oramemory           # Python
npm  install oramemory          # Node
curl -fsSL https://oramemory.com/install.sh | sh   # am CLI

3. First memory — three lines

Python

from oramemory import Memory

m = Memory(api_key="om_live_...")
m.add("User prefers dark mode", agent_id="myai")
hits = m.read("what does the user prefer?", agent_id="myai")

Node

import { Memory } from "oramemory";

const m = new Memory({ apiKey: "om_live_..." });
await m.add("User prefers dark mode", { agentId: "myai" });
const hits = await m.read("what does the user prefer?", { agentId: "myai" });

CLI

am init --api-key om_live_... --agent-id myai
am add "User prefers dark mode"
am read "what does the user prefer?"

4. What next?