The Kapso SDK is a Python package that includes both the Builder SDK for creating agents and the CLI tools for testing and deployment.

Prerequisites

  • Python 3.8 or higher
  • pip (Python package installer)

Installation

Install the Kapso SDK using pip:
pip install kapso
This single installation provides:
  • Builder SDK: Python API for creating agents programmatically
  • CLI Tools: Command-line interface for testing and deployment

Verification

Verify your installation:
kapso version
Expected output shows both SDK and CLI versions:
Kapso SDK version: x.y.z
CLI version: x.y.z

Updating

Update to the latest version:
pip install --upgrade kapso
It’s recommended to use a virtual environment:
# Create virtual environment
python -m venv venv

# Activate it
# On macOS/Linux:
source venv/bin/activate
# On Windows:
venv\Scripts\activate

# Install Kapso
pip install kapso