Skip to main content

Remembr

Persistent memory infrastructure for AI agents.
Store, search, and delete memories across sessions โ€” with one command to self-host.

pip install remembrยทnpm install @remembr/sdk

Dead simple API

from remembr import RemembrClient

async with RemembrClient(api_key="...", base_url="http://localhost:8000/api/v1") as client:
    session = await client.create_session(metadata={"user": "alice"})

    await client.store(
        "Alice prefers weekly billing summaries on Fridays.",
        role="user",
        session_id=session.session_id,
        tags=["kind:preference", "topic:billing"],
    )

    results = await client.search(
        "When should billing summaries be sent?",
        session_id=session.session_id,
        search_mode="hybrid",
    )
    print(results.results[0].content)