Skip to main content
Get Laddr running and execute your first agent in under 60 seconds.

Prerequisites

  • Python 3.9+
  • pip installed
  • (Optional) Docker for full stack

Step 1: Install Laddr

Verify installation:

Step 2: Initialize a Project

This creates a project structure with:
  • agents/ - Your agent definitions
  • workers/ - Worker scripts
  • docker-compose.yml - Docker configuration
  • main.py - Runner script

Step 3: Set API Keys

Create a .env file in your project root:
You can use any LLM provider. Gemini is used in this example, but OpenAI, Anthropic, and Ollama are also supported.

Step 4: Add an Agent


Step 5: Add a Tool


Step 6: Run the Agent

Option A: Local Run (Fastest)

Option B: Full Stack (Docker)

Then submit a job:

Expected Output

You should see:

What’s Next?

Build Your First Agent

Learn to create custom agents

Explore the Dashboard

Use the web UI to monitor agents

Agent Configuration

Configure agents in detail

Tool Development

Create custom tools

Troubleshooting

Installation Issues

If laddr command not found:

API Key Errors

Ensure your .env file is in the project root and keys are valid.

Docker Issues

If Docker commands fail, ensure Docker is running:

Next Steps