Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.

Releases: ultracontext/ultracontext-python

v1.0.2

09 Jan 19:23

Choose a tag to compare

Added

  • Batch update support via updates parameter
  • Parity with TypeScript SDK

v1.0.1

07 Jan 08:56

Choose a tag to compare

README update

v1.0.0

07 Jan 08:42

Choose a tag to compare

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 ultracontext

Quick Start

from ultracontext import UltraContext

uc = UltraContext(api_key="uc_live_...")
ctx = uc.create()
uc.append(ctx["id"], {"role": "user", "content": "Hello!"})