Sign in Get started

Installation

Install the Pictograph SDK and its optional extras (CLI, agents, cache, telemetry).

View as Markdown

Requirements

  • Python 3.10+ (3.11+ recommended). Tested on 3.10–3.13.
  • A Pictograph account and an API key (see Quick Start).

Install

pip install pictograph

Published on PyPI: pictograph. The base install gives you the SDK Client, every resource, the agent toolkit, and the bundled pictograph-cv Skill.

Optional extras

ExtraWhat it addsInstall
clipictograph command (Typer + Rich)pip install 'pictograph[cli]'
agentsClaude Agent SDK + openai-agents adapterspip install 'pictograph[agents]'
cacheLocal SQLite response cache (aiosqlite)pip install 'pictograph[cache]'
telemetryOpenTelemetry SDK for SDK callspip install 'pictograph[telemetry]'
allEverything abovepip install 'pictograph[all]'

Pillow is included in the base install (used to extract image dimensions client-side during upload).

Verify

from pictograph import Client, REGISTRY, __version__

print(f"pictograph v{__version__}")
print(f"{len(REGISTRY)} agent tools registered")

Expected output:

pictograph v1.x.x
28 agent tools registered

CLI verify

pictograph --version
pictograph --help

Editable install (contributors)

git clone https://github.com/pictograph-labs/pictograph-sdk
cd pictograph-sdk
pip install -e '.[dev,cli,agents,cache,telemetry]'
pytest

Next

  • Quickstart — run an end-to-end pipeline in five minutes
  • Authentication — API key resolution and roles
  • Workflows — the headline upload / annotate / train helpers
Copied to clipboard