Skip to main content

Documentation Index

Fetch the complete documentation index at: https://launchpad.datalumina.com/llms.txt

Use this file to discover all available pages before exploring further.

This quickstart shows the Launchpad in action through a customer care example. You follow the steps end‑to‑end without writing new code, and you see how the same steps map to your own client workflows.

General Development Flow

1

Define an event schema

Create a Pydantic model that defines the structure of your incoming data
2

Implement the endpoint

Build a FastAPI endpoint that receives events and triggers workflow processing
3

Build the workflow

Design and implement the workflow logic using various node types

What We’re Building

In this quickstart, we’ll explore a customer care automation system that:
1

Analyzes Tickets

Processes incoming support tickets through intelligent analysis
2

Filters Spam

Detects and filters out spam messages automatically
3

Routes Intelligently

Makes smart routing decisions based on ticket content
4

Generates Responses

Creates appropriate AI-powered responses to customer queries

Getting Started

The fully implemented quickstart workflow ships on main under app/launchpad/workflows/examples/quickstart/. After installation, run it directly from the playground:
uv run playground/quickstart.py

What You’ll Learn

By the end, you understand how to structure event schemas, create API endpoints that trigger workflows, build multi‑node pipelines, integrate AI models for processing, test locally and end‑to‑end, and monitor results in the database or optional Supabase Studio.