Skip to content
synthreo.ai

Builder Debugger

Builder Debugger guide - use the visual step-through debugger to inspect node inputs and outputs, trace data flow, and diagnose issues in AI agent workflows.

The Debuggerin Builder is a troubleshooting tool that allows you to inspect and understand what happened during a workflow run.

It provides visibility into each node’s triggered actions, the data passed between them, and additional execution details - helping you pinpoint issues or verify behavior.

  • Review the latest values processed by each node
  • Inspect the input data received by nodes
  • See detailed execution logs and messages for each triggered node
  1. Open Builderand load the workflow you want to inspect
  2. Click the Testbutton in the top toolbar to manually execute the workflow
    • The Debugger tab is only available after a manual execution
  3. In the Test Resultspanel, click the Debuggertab
  4. The Debugger view will display all nodes that were triggered during the run

Builder Debugger interface

The Debugger contains two main tables:

Shows all nodes that were triggered in the workflow.

ColumnDescription
Node NameThe name of the triggered node
ActionsClick the iconto view the input data that the node received

Example:

  • Input Data – Shows the initial data passed into the workflow
  • Azure OpenAI – Displays the prompt or parameters sent to the model
  • Output Data – Shows the final processed data before workflow completion

Displays additional execution messages for each node.

ColumnDescription
Stack NameThe node name where the message originated
MessageDetails about the node’s execution
ActionsClick the iconto view more context or raw data

Example:

  • Azure OpenAIRAG selection items: Shows the records chosen by the Retrieval-Augmented Generation process based on its understanding
  • Azure OpenAINode execution completed: Confirms successful execution
  • Verifying Data Flow – Check exactly what data each node received during execution
  • Inspecting AI Behavior – Review RAG selection items to understand why certain records were chosen
  • Debugging Errors – Identify which node failed and inspect its input to find the cause
  • Always run the workflow manually via Testbefore opening the Debugger
  • Use the iconto drill down into node inputs and execution details
  • Review both tables to get a complete picture of the workflow’s behavior
  • When testing AI nodes, pay attention to RAG selection details for accuracy checks

Last updated: