Quickstart

First hosted write.

Start with one Cloud API key, one hosted commit, and one recall query before you move Bilinc into a larger agent runtime.

Install pathPyPI package
RuntimeHosted Bilinc Cloud
InterfacePython + CLI + MCP
AccessBILINC_API_KEY
Install

Install the cloud-only SDK.

pip install bilinc
Run

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)
After first success

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.