Quick Start
Create Your First Agent
Section titled “Create Your First Agent”1. Sign Up
Section titled “1. Sign Up”Create an account using GitHub, Google, or email/password authentication.
2. Open the Flow Builder
Section titled “2. Open the Flow Builder”Navigate to the dashboard and click New Agent. This opens the visual flow builder where you design your agent’s behavior.
3. Build a Simple Flow
Section titled “3. Build a Simple Flow”Every agent needs at minimum:
- Start node — Entry point with a trigger type (manual for chat agents)
- Agent node — The LLM that processes input. Configure:
- Model: Choose from 200+ models (e.g.,
openai/gpt-4o-mini) - System prompt: Instructions for the agent
- Temperature: 0.3–0.5 for factual, 0.7–0.9 for creative
- Model: Choose from 200+ models (e.g.,
- End node — Terminates the flow and returns the response
Connect them with edges: Start → Agent → End.
4. Test Your Agent
Section titled “4. Test Your Agent”Click Test in the flow builder to open the chat interface. Send a message and verify the agent responds correctly.
5. Deploy
Section titled “5. Deploy”Activate your agent to make it available via:
- Chat UI — Built-in web chat
- API — Programmatic access with API keys
- Platforms — Connect to Telegram, Discord, Slack, etc.
Architecture Patterns
Section titled “Architecture Patterns”| Pattern | Use Case | Nodes |
|---|---|---|
| Simple Chat | Q&A, support | Start → Agent → End |
| Pipeline | Data processing | Start → HTTP API → Agent → End |
| Conditional | Multi-purpose | Start → Classify → If/Else → [Branches] → End |
| Multi-Agent | Complex tasks | Start → Agent Pool → End |
| Scheduled | Background jobs | Start (cron) → HTTP API → Agent → End |
Next Steps
Section titled “Next Steps”- Agent Architecture — Learn about agent design patterns
- CAFF Reference — Understand the flow format
- Flow Builder Guide — Master the visual editor