> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flowx.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Builder

> Create custom AI agents without code using the FlowX Agent Builder - a no-code/low-code platform for business users.

<Warning>
  **Preview**

  Agent Builder is currently in preview and may change before general availability.
</Warning>

The FlowX Agent Builder is a no-code/low-code platform that enables business users to create custom AI agents without relying on IT or data science teams.

```mermaid theme={"system"}
flowchart LR
    subgraph sources [" "]
        KB[Knowledge Base]
        API[APIs]
        DB[Database]
    end

    sources --> BUILD

    subgraph BUILD [Agent Builder]
        C[Configure] --> T[Test] --> D[Deploy]
    end

    D --> Chat
    D --> Workflows
    D --> API2[REST API]
```

Agents connect to your data through multiple integration options:

* **Knowledge Bases** - Ground responses in your documents using RAG
* **MCP servers** - Connect external tools via Model Context Protocol
* **REST APIs** - Call any HTTP endpoint
* **FlowX Database** - Query and store structured data
* **Kafka** - Event-driven integrations

## What can you build?

Agent Builder allows you to create specialized AI agents that can:

<CardGroup cols={2}>
  <Card title="Process documents" icon="file-lines">
    Extract, validate, and analyze data from various document types
  </Card>

  <Card title="Understand content" icon="brain">
    Perform sentiment analysis, topic modeling, and named entity recognition
  </Card>

  <Card title="Generate content" icon="wand-magic-sparkles">
    Create summaries, translations, and complete documents
  </Card>

  <Card title="Analyze images" icon="image">
    Recognize objects, extract text, and understand scenes
  </Card>

  <Card title="Make decisions" icon="scale-balanced">
    Provide risk assessments and compliance checks with full auditability
  </Card>
</CardGroup>

## Key benefits

### Business empowerment

* **Drag-and-drop interface** accessible to non-technical users
* **Pre-built templates** for common use cases
* **Reduced time-to-market** for AI solutions

### Enterprise-grade features

* **Full audit trails** and explainable AI decisions
* **Integration with existing workflows** and systems
* **Compliance-ready** with regulatory requirements
* **Tool call limit** — agents are capped at 20 tool calls per run to prevent runaway operations

## Core agent categories

<AccordionGroup>
  <Accordion title="Document processing agents" icon="file-invoice">
    * Document extraction and validation
    * Cross-document consistency checks
    * Metadata creation and classification
  </Accordion>

  <Accordion title="Analysis agents" icon="chart-line">
    * Sentiment and emotion analysis
    * Risk assessment and fraud detection
    * Customer behavior analysis for upselling
  </Accordion>

  <Accordion title="Generation agents" icon="pen-nib">
    * Report writing and document completion
    * Content summarization and paraphrasing
    * Multi-language translation
  </Accordion>
</AccordionGroup>

## Getting started

<Steps>
  <Step title="Choose your approach">
    * Start with **pre-built templates** for common scenarios
    * Create **from scratch** with custom instructions
  </Step>

  <Step title="Configure your agent">
    * Define input sources (documents, images, structured data)
    * Set processing logic and validation rules
    * Configure output formats and destinations
  </Step>

  <Step title="Test and deploy">
    * Test with sample documents and data
    * Review confidence scores and validation results
    * Deploy into your FlowX workflows
  </Step>
</Steps>

## Agent Designer interface

The Agent Designer provides a visual canvas for building AI workflows:

| Component      | Description                                          |
| -------------- | ---------------------------------------------------- |
| **Left panel** | Available actions and node types to drag onto canvas |
| **Canvas**     | Visual workflow designer where you connect nodes     |
| **Properties** | Configuration panel for selected nodes               |
| **Test panel** | Run tests with sample data                           |

## Related resources

<CardGroup cols={2}>
  <Card title="Node types" icon="diagram-project" href="./node-types">
    Learn about Generation, Understanding, Extraction, and Analysis nodes
  </Card>

  <Card title="Use cases" icon="lightbulb" href="./use-cases">
    Real-world examples: loan processing, mortgage validation, customer intelligence
  </Card>

  <Card title="Config-time agents" icon="pencil-ruler" href="../pre-built-agents/overview">
    Design-time AI assistants for FlowX Designer
  </Card>

  <Card title="Using agents" icon="play" href="../using-agents/overview">
    Learn how to integrate agents into your apps
  </Card>

  <Card title="Conversational workflows" icon="messages" href="../conversational-workflows">
    Build multi-turn chat experiences with session memory and intent routing
  </Card>
</CardGroup>
