Skip to main content

Getting Started with CAP

This guide will help you set up your first CAP environment and deploy a basic agent.

Prerequisites

Before you begin, ensure you have:

  • Python 3.9 or higher
  • AWS CLI configured
  • Terraform installed
  • Docker Desktop

Quick Start

  1. Clone the Starter Repository
git clone https://github.com/Agaile-com/cap-engine-langgraph-lite
cd cap-engine-langgraph-lite
  1. Install Dependencies
python -m venv venv
source venv/bin/activate # or `venv\Scripts\activate` on Windows
pip install -r requirements.txt
  1. Configure Environment
cp .env.example .env
# Edit .env with your settings
  1. Run Sample Agent
python run_agent.py

Next Steps