Python SDK

Call verifiable memory from Python.

Use CloudClient when Bilinc sits inside your agent runtime and needs hosted project-isolated memory.

Install pathPyPI package
RuntimeHosted Cloud
InterfacePython + CLI + MCP
Releasev2.1.3
Lifecycle

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()
Memory types

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.