Skip to content

Conversational Workflow (Debug & Publish)

The Conversational Workflow editor is used to orchestrate multi-turn dialogue AI application flows. After orchestration, use the top-right toolbar to check, preview, and publish.

Conversational Workflow Interface


Page Layout

AreaDescription
Left Node PanelDraggable node types; two tabs: Nodes and Components
Central CanvasOrchestration area; connect nodes with lines to form a complete workflow
Top-right ToolbarFour entry points: Checklist, Preview, Features, and Publish

Available Node Types

GroupNodes
(Basic)Model, Knowledge Base, Temporary Knowledge Base, Direct Reply
Question UnderstandingIntent Recognition
LogicCondition, Task Loop
TransformCode Execution, Merge Output, Text Extraction, Document Split, Parameter Extraction, Variable Assignment, Conversational SQL
ToolsHTTP Request

Preview & Debug

Click the Preview button in the top right. A preview panel appears on the right side for real-time testing without publishing.

Preview - Node Flow Log

Enter a question in the bottom input box and send. The preview panel displays:

  • Conversation Reply — The AI's answer based on the workflow configuration
  • Workflow Node Flow Log — Execution status, time, and data processing details for each node

Node Log Details

Expand a node (e.g., the Model node) to view detailed run information:

FieldDescription
Data ProcessingInput data received by the node in JSON format, including message history, model provider, model name, etc.
OutputExecution result including model reply text and Token usage stats (prompt_tokens, completion_tokens, etc.)
Execution TimeTime taken by this node, shown to the right of the node name (e.g., 2.755s)

Tip: Node flow logs help identify abnormal nodes. Test various input scenarios thoroughly before publishing.


Publish & Update

After preview verification, click the Publish button in the top right:

Publish Update

ActionDescription
Publish UpdatePublish the current workflow's latest configuration as the live version; takes effect immediately for live applications
RunLaunch the currently published version; redirects to the application run interface

Run Interface

After clicking Run, the application's conversation run interface opens. Users can have a formal conversation with the published AI application here.

Run Interface

AreaDescription
Left HistoryShows historical conversation records; click New Conversation to start a new session
Top App NameDisplays the current workflow's name
Conversation SettingsExpand to configure conversation-related parameters
Central Conversation AreaShows the complete conversation between the user and the AI
Bottom Input BoxEnter a question or request and click Send

Note: The run interface shows the effect of the published version. To test unpublished changes, use the Preview feature.