This repository was archived by the owner on Feb 16, 2026. It is now read-only.
Releases: ultracontext/ultracontext-python
Releases · ultracontext/ultracontext-python
v1.0.2
v1.0.1
README update
v1.0.0
Initial Python SDK release.
Features
- Sync client (
UltraContext) and async client (AsyncUltraContext) - Full API support:
create,get,append,update,delete - Type hints with TypedDict
- Python 3.8+
Install
pip install ultracontextQuick Start
from ultracontext import UltraContext
uc = UltraContext(api_key="uc_live_...")
ctx = uc.create()
uc.append(ctx["id"], {"role": "user", "content": "Hello!"})