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

# Jelou Agent

> Use the Brain Studio Agent to build conversational workflows or query data about your organization.

Brain Studio includes an agent directly on the home view. Choose **Build** mode to create workflows with AI, or **Insights** mode to query your conversation data and better understand your organization.

## How it works

<Frame caption="Brain Studio home view">
  <img src="https://mintcdn.com/jelouai/s-Vg3soYNaG_2Rwv/assets/images/brain/brain-studio-home-en.png?fit=max&auto=format&n=s-Vg3soYNaG_2Rwv&q=85&s=bf3ae010789b5f6502fb104d538fd6c1" alt="Brain Studio home view" width="2704" height="1286" data-path="assets/images/brain/brain-studio-home-en.png" />
</Frame>

<Steps>
  <Step title="Choose a mode">
    The home view has two tabs. Select the one that fits what you need.

    <AccordionGroup>
      <Accordion title="Build — Create conversational workflows" icon="wrench">
        The agent builds the solution on the canvas from your prompt. It creates nodes, configures connections, and applies the logic you described.

        * Generates the flow from start to finish.
        * You can review and adjust the result on the canvas.
        * Ideal for quick prototyping or implementing known workflows.

        **When to use it:** when you want to build or modify a conversational workflow.
      </Accordion>

      <Accordion title="Insights — Query your organization's data" icon="chart-bar">
        The agent answers questions about your conversations and delivers metrics and information to help you understand how your organization operates.

        * Query volumes, trends, and user behavior.
        * Get specific data without navigating to manual reports.
        * Ideal for making data-driven decisions.

        **When to use it:** when you want to understand what is happening in your conversations.
      </Accordion>
    </AccordionGroup>
  </Step>

  <Step title="Select project and workflow">
    In the prompting area, choose the **project** and **workflow** where you want the agent to work. If they don't exist, you can create them from the same selectors.
  </Step>

  <Step title="Describe what you need">
    In the text field, write what you want to build or know. Be specific: state the goal, relevant data, or business logic.

    <Tabs>
      <Tab title="Build">
        ```txt wrap theme={null}
        Create a customer support flow that greets the user, asks for their order number, and checks order status via API at this URL: https://your-url.com, with this header credential: x-api-key: abc-123.
        ```
      </Tab>

      <Tab title="Insights">
        ```txt wrap theme={null}
        How many conversations did we have last week and what was the most frequent topic?
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Send and work with the agent">
    Click **Send**. In **Build** mode, the agent will take you to the canvas of the selected workflow and start building. In **Insights** mode, you will receive the data directly in the response.
  </Step>
</Steps>

## Work on the canvas with the Jelou Agent

In **Build** mode, once you send your prompt from the Home view, you land on the **canvas**: the visual editor where flows are built.

<Frame caption="Brain Studio canvas">
  <img src="https://mintcdn.com/jelouai/GcQGoXib_VPz6cf7/assets/images/brain/brain-studio-builder-en.gif?s=729ef59f6112822b9de5af2fd276d69b" alt="Brain Studio canvas" width="2704" height="1298" data-path="assets/images/brain/brain-studio-builder-en.gif" />
</Frame>

The agent stays available on the canvas via the side chat panel. From there you can:

* **Iterate on the flow:** refine existing nodes, add new branches, or extend the logic.
* **Get answers:** ask how a node, variable, or integration works.
* **Change mode:** switch between Build and Insights at any time.

Whenever the agent generates solutions for you, drag them onto the canvas to try them out.

At the top of the side panel you also have the project selector, conversation history, and the option to create new chats.

### Complementary actions on the canvas

Besides the agent, from the canvas you can perform key actions to take your solution to production:

<CardGroup cols={3}>
  <Card title="Activate channels" icon="plug" href="/en/guides/channels/whatsapp">
    Connect your workflow to WhatsApp, Facebook Messenger, or a web widget so users can interact with it.
  </Card>

  <Card title="Publish versions" icon="rocket" href="/en/guides/getting-started/publicar-versiones">
    Publish your changes so the current version is available in production.
  </Card>

  <Card title="Version history" icon="clock-rotate-left" href="/en/guides/getting-started/publicar-versiones">
    View, compare, and restore previous versions of your project.
  </Card>
</CardGroup>

## Next steps

<CardGroup cols={2}>
  <Card title="Your first workflow" icon="play" href="/en/guides/getting-started/tu-primer-workflow">
    Build a basic question-and-answer flow step by step.
  </Card>

  <Card title="Workflows with AI" icon="sparkles" href="/en/guides/getting-started/workflows-con-ai">
    Use an AI Agent node to collect structured data from the user.
  </Card>
</CardGroup>
