Import CloudClient, then write, recall, and inspect hosted state.
import os
from bilinc import CloudClient
client = CloudClient(api_key=os.environ["BILINC_API_KEY"])
client.commit("user.preference", {"theme": "dark"})
results = client.recall("user preference", limit=5)
status = client.status()Use the right shape for the right state.
working
Active short-lived context.
episodic
Event and session memory.
procedural
Reusable workflows.
semantic
Durable facts and beliefs.
