STRATAM io
Under 5 minutes · lab then product

Quickstart

Set up STRATAM, store a memory, and search it. Same shape as a hosted SDK tutorial — without leaving your machine.

Product / local path AU privacy

Prerequisites

1 — Install

cd STRATAM
python dev.py setup
# or: pip install -e ".[crypto]"

2 — Lab remember / recall

Not product security. Lab auto-auth + insecure test cipher.

from stratam import MemoryFabric, Principal

f = MemoryFabric()
alice = Principal("alice", scope="alice")
f.remember("I'm a vegetarian and allergic to nuts.", alice)
print(f.recall("What are my dietary restrictions?", alice).top_text())

3 — Product-shaped path (demo / AU)

import secrets
from stratam import product_fabric

key = secrets.token_bytes(32)  # inject from your KMS — never a repo default
f, b = product_fabric(key, require_registered_channel=False)
token = b.issue("alice", "alice", may_write=True)  # server-side only
b.remember(f, "I'm a vegetarian and allergic to nuts.", token)
print(b.recall(f, "dietary restrictions", token).top_text())

4 — Console

Local product console first. Hosted console.stratam.cloud is a non-PHI demo console outside any clinical path — demo logins only, not production IdP/KMS.

python examples/ui/server.py --profile product
# open http://127.0.0.1:8765
# optional non-PHI demo (not clinical): https://console.stratam.cloud/

What's next

Lab defaults are not protective. Product path refuses repo-known keys. Home · Demo console (non-PHI)