Membase
30-second example
pip install "unibase-membase-sdk @ git+https://github.com/unibaseio/unibase-membase.git"from unibase_membase import Membase, Wallet
alice = Membase(Wallet.from_env()) # MEMBASE_PRIVATE_KEY
# Private memory — only alice's wallet can decrypt
alice.private().set("notes/today", {"v": "ship the agent-direct evolution"})
# Recall — distilled, deterministic, runs on alice's own machine
alice.memory.ingest(turns=[
{"role": "user", "content": "I'll go to Tokyo in November 2026."},
{"role": "user", "content": "Actually, moving the trip to August 2026."},
])
print(alice.memory.answer("When is the Tokyo trip?", query_date="2026-08-01"))
# → {'answer': 'August 2026', ...}Core concepts
Concept
One line
Integration options
Option
Best for
Setup
Next steps
Resources
Last updated