Interactive agent replay

Your First AI Agent

A question goes in, the agent reasons over it, and a complete answer comes out.

3

executed nodes

3

recorded steps

2.3s

actual runtime

2026-07-28

recorded on

Your First AI Agent
Read-only replay

Recorded run

Ready to replay · 2.3s actual runtime

0/3
Click any node to inspect it

Replay the recorded run

Inputs are locked to the original execution so every replay stays honest and repeatable.

YourMessage

recorded input
Hello! I run a small e-commerce team. What kinds of work can I automate with AI agents?

Use the transport bar above to pause, seek, or change speed.

Real Heym run recorded on 2026-07-28. The replay is deterministic; node outputs and timings are the original execution data.

Inside the workflow

What happens in this run

The smallest useful agent workflow on the Heym canvas: a text input feeds an Agent node, and the agent’s real response lands in the output. It is the exact flow we recommend building first, and this is a real recorded run of it, not a scripted animation. The same canvas then scales into full AI agent workflows: attach tools the agent can call at runtime, add RAG over your own documents, or orchestrate multiple agents as a team. Watching this three-node run is the fastest way to understand how AI workflow automation feels in Heym before you self-host it.

1YourMessagetextInput node · 0ms

Input

Trigger node, no upstream input.

Output

from YourMessage

{
  "headers": {
    "content-type": "application/json",
    "x-simple-response": "false",
    "connection": "keep-alive",
    "user-agent": "Bun/1.3.10",
    "accept": "*/*",
    "host": "localhost:10105",
    "accept-encoding": "gzip, deflate, br, zstd",
    "content-length": "127"
  },
  "query": {},
  "body": {
    "value": "Hello! I run a small e-commerce team. What kinds of work can I automate with AI agents?"
  },
  "value": "Hello! I run a small e-commerce team. What kinds of work can I automate with AI agents?"
}
2ChatAgentagent node · 2.3s

Input

from YourMessage

{
  "headers": {
    "content-type": "application/json",
    "x-simple-response": "false",
    "connection": "keep-alive",
    "user-agent": "Bun/1.3.10",
    "accept": "*/*",
    "host": "localhost:10105",
    "accept-encoding": "gzip, deflate, br, zstd",
    "content-length": "127"
  },
  "query": {},
  "body": {
    "value": "Hello! I run a small e-commerce team. What kinds of work can I automate with AI agents?"
  },
  "value": "Hello! I run a small e-commerce team. What kinds of work can I automate with AI agents?"
}

Output

from ChatAgent

{
  "text": "Hello! That is a great way to save time and scale your operations. Here are several key areas in e-commerce where you can use AI agents:\n\n1.  **Customer Support**\n    *   **24/7 Chatbots:** Handle common FAQs like shipping times, return policies, and order status instantly.\n    *   **Ticket Triage:** Summarize incoming customer emails and route complex issues to human agents.\n    *   **Returns Processing:** Automate the approval and label generation for standard returns.\n\n2.  **Product Content**\n    *   **Description Writing:** Generate SEO-friendly product descriptions based on supplier specs or photos.\n    *   **Image Editing:** Remove backgrounds or enhance product photos automatically.\n    *   **Translation:** Translate listings and support content to sell in international markets.\n\n3.  **Marketing & Sales**\n    *   **Email Campaigns:** Personalize email newsletters and abandoned cart sequences based on customer behavior.\n    *   **Social Media:** Schedule posts and generate captions or hashtags for platforms like Instagram and TikTok.\n    *   **Ad Copy:** Create variations of ad text to test which performs best.\n\n4.  **Inventory & Operations**\n    *   **Stock Alerts:** Monitor inventory levels and predict when to reorder based on sales velocity.\n    *   **Order Updates:** Send proactive notifications to customers about shipping delays or iss
…
3AgentReplyoutput node · 0ms

Input

from ChatAgent

{
  "text": "Hello! That is a great way to save time and scale your operations. Here are several key areas in e-commerce where you can use AI agents:\n\n1.  **Customer Support**\n    *   **24/7 Chatbots:** Handle common FAQs like shipping times, return policies, and order status instantly.\n    *   **Ticket Triage:** Summarize incoming customer emails and route complex issues to human agents.\n    *   **Returns Processing:** Automate the approval and label generation for standard returns.\n\n2.  **Product Content**\n    *   **Description Writing:** Generate SEO-friendly product descriptions based on supplier specs or photos.\n    *   **Image Editing:** Remove backgrounds or enhance product photos automatically.\n    *   **Translation:** Translate listings and support content to sell in international markets.\n\n3.  **Marketing & Sales**\n    *   **Email Campaigns:** Personalize email newsletters and abandoned cart sequences based on customer behavior.\n    *   **Social Media:** Schedule posts and generate captions or hashtags for platforms like Instagram and TikTok.\n    *   **Ad Copy:** Create variations of ad text to test which performs best.\n\n4.  **Inventory & Operations**\n    *   **Stock Alerts:** Monitor inventory levels and predict when to reorder based on sales velocity.\n    *   **Order Updates:** Send proactive notifications to customers about shipping delays or iss
…

Output

from AgentReply

{
  "result": {
    "ChatAgent": {
      "text": "Hello! That is a great way to save time and scale your operations. Here are several key areas in e-commerce where you can use AI agents:\n\n1.  **Customer Support**\n    *   **24/7 Chatbots:** Handle common FAQs like shipping times, return policies, and order status instantly.\n    *   **Ticket Triage:** Summarize incoming customer emails and route complex issues to human agents.\n    *   **Returns Processing:** Automate the approval and label generation for standard returns.\n\n2.  **Product Content**\n    *   **Description Writing:** Generate SEO-friendly product descriptions based on supplier specs or photos.\n    *   **Image Editing:** Remove backgrounds or enhance product photos automatically.\n    *   **Translation:** Translate listings and support content to sell in international markets.\n\n3.  **Marketing & Sales**\n    *   **Email Campaigns:** Personalize email newsletters and abandoned cart sequences based on customer behavior.\n    *   **Social Media:** Schedule posts and generate captions or hashtags for platforms like Instagram and TikTok.\n    *   **Ad Copy:** Create variations of ad text to test which performs best.\n\n4.  **Inventory & Operations**\n    *   **Stock Alerts:** Monitor inventory levels and predict when to reorder based on sales velocity.\n    *   **Order Updates:** Send proactive notifications to c
…

3 recorded steps · 2.3s of real execution · recorded 2026-07-28

Put the pattern to work

Where teams use this pattern

  • A starting point before wiring tools, RAG, or multi-agent flows
  • Internal Q&A helpers exposed through the chat portal
  • Smoke-testing your LLM credentials inside a workflow

Start from the Build Your First AI Agent template.

Browse more ready-made flows in the template gallery.

Run this workflow on your own Heym

Heym is Self Hosted and Source Available, clone it and spin up the canvas locally in under a minute, then run the workflow you just watched.

$ git clone https://github.com/heymrun/heym.git
$ cd heym && cp .env.example .env
$ ./run.sh
✓ Ready at http://localhost:4017
Watch the self-hosted setup videoSet Up Heym Locally in Under 2 MinutesWatch
Need every variable? See the environment reference.