Install the cloud-only SDK.
pip install bilinc
Create a client, commit state, recall it.
import os
from bilinc import CloudClient
client = CloudClient(api_key=os.environ["BILINC_API_KEY"])
client.commit(
"agent.intent",
{"goal": "ship reliable memory"},
memory_type="semantic",
importance=0.9,
)
results = client.recall("reliable memory", limit=5)Then harden the path.
API key
Create a Cloud key from the dashboard and set BILINC_API_KEY in your agent runtime.
Trial
New accounts start with a 7-day hosted trial before Pro, Team, Scale, or Enterprise.
Operations
Use hosted status, entitlements, retention, and audit instead of local runtime internals.
Integration
Use CloudClient directly or expose hosted commit/recall through MCP.
