Agent memory

Agent memory for TypeScript & Python

Aether gives your AI agent persistent, per-user memory and document retrieval behind one API — with SDKs for TypeScript, Python, Go, and .NET. Store what your agent learns, recall what it needs by meaning, and ground every reply.

Why Aether: Agent memory plus document RAG — four SDKs, including first-party .NET.

01What is agent memory?

02Add memory in five minutes

Install
npm install @aether-ai/sdk   # TypeScript / Node
pip install aether-ai        # Python
TypeScript
import { Memory } from "@aether-ai/sdk";

// Scope memory to a stable user or agent id.
const memory = new Memory("user-42", { apiKey: process.env.AETHER_API_KEY });

await memory.remember("Prefers concise weekly summaries");

const hits = await memory.recall("communication style", { k: 5 });
for (const hit of hits) {
  console.log(hit.score, hit.text); // higher score = more relevant
}
Python
import os
from aether import Memory

# Scope memory to a stable user or agent id.
memory = Memory("user-42", api_key=os.environ["AETHER_API_KEY"])

memory.remember("Prefers concise weekly summaries")

for hit in memory.recall("communication style", k=5):
    print(hit.score, hit.text)  # higher score = more relevant
TypeScript
import { AetherClient } from "@aether-ai/sdk";

const client = new AetherClient({ apiKey: process.env.AETHER_API_KEY });

// Store source material once...
await client.insertText("Aether bundles vector search, storage, and embeddings.");

// ...then retrieve passages ready to drop into a prompt.
const passages = await client.retrieve("what does Aether bundle?", 5);

03Aether vs Mem0 vs Zep, for a TS or Python builder

CapabilityAetherMem0Zep
Official SDK languagesTypeScript, Python, Go, .NETPython, TypeScriptPython, TypeScript, Go
First-party .NET SDKYesNoNo
Per-user memory (remember / recall)YesYesYes
Document RAG in the same storeYes — PDF, DOCX, HTMLLimited (chat-first)Limited (graph-first)
MCP server for coding agentsYesYes (hosted)Yes (Graphiti)
Pricing modelFlat-rate platformMetered by operationsMetered by data volume
Self-hostSingle binaryPython service + vector DBPython + graph DB

04Why teams choose Aether

One platform, one bill

Vector search, document storage, and embeddings are bundled behind a single API — not Mem0 plus a vector DB plus an embeddings provider, each on its own invoice.

Four SDKs, including .NET

First-party SDKs for TypeScript, Python, Go, and .NET. Mem0 stops at Python and TypeScript; Zep adds Go. Aether is the only one of the three with a first-party .NET SDK.

Document-first, not just chat

The same store that holds per-user memory also ingests PDFs, DOCX, and HTML for retrieval — so an agent remembers conversations and the source material behind them.

Self-host from one binary

Run Aether as a single binary with no external vector database to operate, or use managed hosting at aetherdb.ai. Flat-rate pricing means your agent fleet can scale without your bill scaling with it.

05Frequently asked questions

What is agent memory?

Agent memory is persistent storage that lets an AI agent remember information across sessions — user preferences, earlier conversations, and source documents — and recall the most relevant pieces at query time using semantic (vector) search. Without it, an agent forgets everything once its context window fills up or the session ends.

What is the best agent memory library for a TypeScript app?

Common choices are Aether, Mem0, and Zep. Aether gives a TypeScript app per-user memory and document RAG behind one API and one bill, via the official @aether-ai/sdk package. Pick Aether when you want memory and document retrieval bundled, flat-rate pricing, single-binary self-hosting, or SDK parity across TypeScript, Python, Go, and .NET.

How is Aether different from Mem0 and Zep?

Aether bundles vector search, document storage, and embeddings into one API and one bill, and ships first-party SDKs for TypeScript, Python, Go, and .NET. Mem0 covers Python and TypeScript; Zep adds Go; neither ships a first-party .NET SDK. Aether is document-first as well as conversation-first, so one store handles per-user memory and RAG over PDFs, DOCX, and HTML.

Does Aether work with Python and TypeScript?

Yes. Install @aether-ai/sdk for TypeScript/Node or aether-ai for Python. Aether also ships official SDKs for Go and .NET, plus an MCP server so coding agents can read and write memory directly.

How do I add memory to my AI agent?

Create an API key, then use the Memory facade: new Memory(userId).remember('a fact') to store, and memory.recall('a question') to retrieve the most relevant memories, ranked by score. It takes about five minutes — see the TypeScript and Python quickstarts.

Can I self-host Aether?

Yes. Aether runs as a single binary with no external vector database to operate, and managed cloud hosting is available at aetherdb.ai if you would rather not run the infrastructure yourself.

Give your agent a memory.

Start free with the TypeScript or Python SDK. One API for memory and document retrieval, one bill, sub-millisecond recall.