How it works
AI Agent Builder orchestrates every conversation through a configurable pipeline with knowledge, tools, guardrails, memory, and full observability.
Pipeline
Each user message flows through a configurable pipeline of steps. You can enable, disable, and reorder steps from the admin panel — no code required.
Simplified view of a typical pipeline. The actual workflow is a directed graph — agents can include conditional branching, intent classification, loops, and sub-agent calls.
Tools
The agent can call external tools via OpenAPI, MCP, or webhooks. OpenAPI connects existing APIs, MCP encapsulates tools and agents, and webhooks execute operational workflows.
- Auto-discovered OAS 3.x spec
- LLM-generated parameters
- CEL filters in query string
- Great for existing APIs
- Model Context Protocol
- tools/list + tools/call
- Encapsulated business logic
- Third-party agents as tools
- HTTP endpoints as tools
- Typed body, query, path and headers
- Auth: API keys, bearer, context tokens
- Great for quick automations
API already exists with a spec. Params are simple. Quick integration, no extra code.
Need to encapsulate logic. Rich typing. Connect third-party tools from the MCP ecosystem.
You want to trigger an automation or notify an external system without building a full integration.
Guardrails
Configurable safety checks that run before or after the agent responds. Protect against harmful content, data leaks, and off-topic conversations — all without custom code.
Detects attempts to manipulate the agent's behavior through crafted inputs. Protects the integrity of your agent's instructions.
Keeps the agent focused on your business domain. If a user asks about something outside scope, the agent politely redirects.
Detects and blocks harmful, violent, or inappropriate content in the user's message before the agent processes it.
Identifies personal data such as emails, phone numbers, and documents in the user's input. Can redact or block the message before it reaches the agent.
Define your own rules in plain language. The guardrail evaluates each message against your policies — no code required.
All checks are configurable per agent from the admin panel — no code required.
Knowledge base
The agent can search your internal documents before responding. This grounds answers in real information and reduces hallucinations.
Semantic search compares the query vector against all stored vectors using cosine similarity. The K most similar chunks are included in the LLM prompt.
Memory
AI Agent Builder maintains two levels of memory for each conversation — so the agent remembers context within a session and across sessions.
Compressed summary of the current conversation. Regenerated when history exceeds the limit.
Facts, preferences and operational notes that persist across sessions.
Flow control
Build workflows that adapt to each conversation. Route on rules or AI-classified intent, iterate until a condition is met, and pause for a human when a decision needs one.
Automation
Run workflows without consuming LLM tokens. Execute API calls, transform data, and respond with deterministic logic — triggered by REST requests or cron schedules. The same visual editor, the same observability, zero AI cost per execution.
Orchestration
Orchestrate multiple agents within a single conversation. Delegate tasks to specialized sub-agents using the agent node, integrate third-party agents via MCP as tools (agent-as-tool pattern), group related steps into reusable units, or add flexible AI processing at any point in the workflow.
Agent harness
Describe what the agent should do and the platform compiles the agent loop for you — planning, step execution, verification, and context management included. This is the work most teams spend months getting right, and you do not draw a single node to get it.
Observability
Full visibility into every conversation. See what happened at each step, track costs by tenant, collect user feedback scores, and analyze quality trends — with built-in timeline and optional Langfuse integration for advanced analytics.