Skip to main content

SDK Installation

Install the Sypho Python SDK.

Requirements

  • Python 3.11+
  • pip or uv

Install

pip install sypho-sdk

Verify

import sypho_sdk
print(sypho_sdk.__version__)

Development Install

From source:

git clone https://github.com/sypho/sypho-sdk
cd sypho-sdk
pip install -e .

Dependencies

The SDK includes:

  • anthropic - Claude API client
  • openai - OpenAI API client
  • httpx - Async HTTP client
  • pydantic - Data validation

Next Steps