This release is a pre-release and may not be stable for production use.
ContextDB Cloud Python SDK for AI agent memory
Remote client for the ContextDB Cloud data plane. The hosted API and this package are alpha and do not carry a production availability commitment.
pip install contextdb-cloud-client==0.2.0a1
Correct, retract, or deduplicate memory
from contextdb_cloud_client import CloudClient
async with CloudClient("https://api.contextdb.ai", api_key="cdb_…") as cdb:
corrected = await cdb.evolve(
"caller-1",
"update",
idempotency_key="call-456-correction-v1",
target_memory_id=current_memory_id,
content="My preferred visit day is Sunday.",
source="user_stated",
)
retracted = await cdb.evolve(
"caller-1",
"delete",
idempotency_key="call-456-retraction-v1",
target_memory_id=obsolete_memory_id,
)
duplicate = await cdb.evolve(
"caller-1",
"noop",
idempotency_key="call-456-duplicate-v1",
noop_reason="duplicate",
)
EvolutionResult exposes requested/applied operation, outcome, optional
memory, previous and deleted memory IDs, NOOP reason, memory_version,
primary_wal_lsn, and request_id. Target IDs are opaque; store and pass them
unchanged.
Full memory lifecycle
from contextdb_cloud_client import CloudClient
async with CloudClient("https://api.contextdb.ai", api_key="cdb_…") as cdb:
saved = await cdb.remember(
"caller-1", "Thursday works", source="user_stated",
confidence=0.9, idempotency_key="call-456-preference-v1",
)
context = await cdb.recall(
"caller-1",
"when can they come in?",
min_memory_version=saved.memory_version,
min_primary_wal_lsn=saved.primary_wal_lsn,
)
decision = await cdb.evaluate_action("caller-1", "book the visit")
if decision.outcome == "act":
# Execute in your host, then close the Action Ledger.
await cdb.report_execution(
"caller-1", decision.decision_id, "appointment.book", "succeeded",
idempotency_key=f"receipt-{decision.decision_id}",
external_ref="appt-8842",
)
pending = await cdb.pending_confirmations("caller-1")
# Hosted Alpha formation: enqueue, then poll.
submitted = await cdb.submit_formation_job(
"caller-1",
[{"speaker": "user", "content": "I prefer Saturday mornings."}],
mode="propose",
idempotency_key="call-456-formation-v1",
)
formation = await cdb.get_formation_job(submitted.job_id)
LocalClient wraps the in-process memory calls for offline development.
Cloud-only control-plane features such as durable action decisions and
execution receipts require CloudClient.
The API key is a project-wide server credential (cdb_…). Keep it in your
server's secret store; never in a browser or client-side code.
Pass a stable idempotency_key to every evolve call and when retrying
remember, remember_many, confirm, or
extract_memories(..., mode="commit"). Reuse the key only for the exact same
logical request.
submit_formation_job always requires one. It accepts structured text turns
only; no audio or cancellation contract exists.
Delete one bad memory with forget(user_id, memory_id=...). Whole-partition
erasure is deliberately harder: pass erase_partition=True,
confirmation=user_id, and an idempotency_key; Cloud deletes the partition
and verifies that no memory rows or vector-index IDs remain.
Use cases
- AI voice agents: remember caller preferences and confirmed constraints across calls.
- Customer support agents: retrieve prior context while requiring trusted evidence before consequential actions.
- Workflow agents: record act/ask/abstain decisions and report execution outcomes.
- Privacy operations: delete one memory, a stable slot, or a complete user partition with verification.
- Corrections: UPDATE a known memory or stable slot while preserving previous IDs as lineage.
- Retractions: DELETE an opaque target or slot and inspect the returned deleted IDs.
- Duplicates: return an explicit NOOP reason instead of storing another copy.
Formation candidates and job reviews expose operation, target, server-derived candidate key, operation results/counts, deleted IDs, and consistency tokens. Legacy candidates with no operation are read as implicit ADD. Missing operation results are never synthesized from memory IDs.
Status and limitations
This is a thin Hosted Alpha transport. Formation accepts structured text turns only; there is no audio upload, cancellation, job listing, retention API, public availability SLO, or published hosted production proof. The package contains no hosted planner, worker, tenancy, commit ledger, or recovery code.
Python starter kits
Each starter installs this package and is checked against the documented framework imports in CI.
Links
- API documentation
- Memory Evolution in ContextDB SDK 0.4.1
- ContextDB SDK 0.4.1 package
- Source and examples
- Open-source ContextDB engine
- Release notes
FAQ
Which operation should I use?
Use ADD for a new durable fact, UPDATE for a correction, DELETE for an explicit
retraction, and NOOP for a duplicate or no durable change. UPDATE and DELETE
need an opaque target ID or an entity/attribute slot.
Is idempotency_key optional for evolution?
No. The client validates the 8–128 character key before transport.
Is this package production-ready?
No. contextdb-cloud-client and the hosted service are alpha. The package does
not claim a public availability SLA or hosted production proof.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file contextdb_cloud_client-0.2.0a1.tar.gz.
File metadata
- Download URL: contextdb_cloud_client-0.2.0a1.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54f5ac0a0b2c912061a0711c9d4ae2ef70c49375be478d65fc01ab540dba86bb
|
|
| MD5 |
238b825eeb50076f471a8482887e7c97
|
|
| BLAKE2b-256 |
8c707bc7960dfd0b5b031eae4fed406320315a1699007fdc3de4d401a08f4c86
|
Provenance
The following attestation bundles were made for contextdb_cloud_client-0.2.0a1.tar.gz:
Publisher:
publish-python.yml on atomsai/contextdb-clients
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
contextdb_cloud_client-0.2.0a1.tar.gz -
Subject digest:
54f5ac0a0b2c912061a0711c9d4ae2ef70c49375be478d65fc01ab540dba86bb - Sigstore transparency entry: 2580009236
- Sigstore integration time:
-
Permalink:
atomsai/contextdb-clients@08ba3ab72688da5de9542df32ef677b235fb2631 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/atomsai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@08ba3ab72688da5de9542df32ef677b235fb2631 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file contextdb_cloud_client-0.2.0a1-py3-none-any.whl.
File metadata
- Download URL: contextdb_cloud_client-0.2.0a1-py3-none-any.whl
- Upload date:
- Size: 22.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b71eb55b74827bdae1bcff944714466dfd35d67b1025598d88fa1a1238cc199f
|
|
| MD5 |
4c98fbbc8721642f641c0d0f47ba7ae0
|
|
| BLAKE2b-256 |
54df8c3ff4c76d2f7742d09468b4334a78b585631bd010721ec64c82c5506ced
|
Provenance
The following attestation bundles were made for contextdb_cloud_client-0.2.0a1-py3-none-any.whl:
Publisher:
publish-python.yml on atomsai/contextdb-clients
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
contextdb_cloud_client-0.2.0a1-py3-none-any.whl -
Subject digest:
b71eb55b74827bdae1bcff944714466dfd35d67b1025598d88fa1a1238cc199f - Sigstore transparency entry: 2580009239
- Sigstore integration time:
-
Permalink:
atomsai/contextdb-clients@08ba3ab72688da5de9542df32ef677b235fb2631 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/atomsai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@08ba3ab72688da5de9542df32ef677b235fb2631 -
Trigger Event:
workflow_dispatch
-
Statement type: