The Kapso CLI and Builder SDK provide comprehensive tooling for building, testing, and deploying conversational AI agents:

  • Builder SDK: Python SDK for programmatically creating agents
  • Agent development: Define conversation flows with nodes and edges
  • Local testing: Test agents interactively with visual debugger
  • Cloud deployment: Deploy agents to Kapso Cloud platform
  • Test automation: LLM-based testing with AI judge evaluation
  • WhatsApp integration: Build agents for WhatsApp Business

Installation

Install the Kapso SDK (includes both Builder SDK and CLI):

pip install kapso

This installs:

  • The Builder SDK for creating agents in Python
  • The CLI tools for testing and deployment

Verify your installation:

kapso version

Quick Start

  1. Initialize a new project:
kapso init
  1. Test locally:
kapso run
  1. Deploy to cloud:
kapso deploy

Command Reference

Core Commands

  • kapso init - Initialize a new project
  • kapso login - Authenticate with Kapso Cloud
  • kapso run - Test agent locally
  • kapso deploy - Deploy agent to cloud
  • kapso test - Run test suites
  • kapso pull - Download agent from cloud

Global Options

  • --verbose, -v - Enable detailed output

Next Steps