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
To run the example, check out thequickstart
branch. It includes a fully implemented workflow so you can observe the event flow, background processing, and results without additional setup.