Commit and recall

Write important state once, then recall it before risky work.

Commit and recall are the core hosted memory loop for long-running agents.

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

Commit only what should become durable memory.

from bilinc import CloudClient

client = CloudClient()
client.commit(
    "project.status",
    {"phase": "docs refresh", "verified": True},
    memory_type="episodic",
    importance=0.8,
)
recall

Recall before continuing a workflow.

results = client.recall(
    "what did we verify in the docs refresh?",
    profile="balanced",
    limit=5,
)
contract

Treat failures as non-durable.

If the Cloud API does not return success, the agent should behave as if the write did not happen. This keeps durable memory honest.