Workflow Guide (Automation Process)
Workflow is a powerful feature that helps you automate complex tasks consisting of multiple sequential steps (e.g., Write SEO article -> Translate to English -> Post to Facebook). Unlike Chat Flow (interactive with users), Workflow runs straight through from start to finish to produce results.Workflow Design Thinking
A standard Workflow always consists of 3 main components:- Start (Input): Where you enter data (e.g., Keywords, Topics).
- Nodes (Processing Steps): “AI workers” performing individual tasks (Write, Translate, Summarize…).
- End (Output): The final result you receive.
💡 Golden Rule: The result of the previous step is the input material for the next step. Use variables {{…}} to transfer data between steps.
Practice: Create “SEO Article Writing” Workflow
In this tutorial, we’ll build an automated process with 3 steps:- Step 1: Create an article outline from keywords.
- Step 2: Write detailed content based on the outline.
- Step 3: Create an attractive headline.
Step 1: Initialize Workflow
- On the Studio screen, click the Create New (+) button.
- Select application type: Workflow.
- Name it: “SEO Article Writing Process”.
- Enter description (optional) and click Create.

Step 2: Configure Input (Start Node)
We need to declare what the user will input.- Click on the Start node.
- In the configuration panel, click + Add Variable.
- Fill in variable information:
- Variable Name:
topic(no spaces or special characters). - Label:
Article Topic. - Type: Text.
- Required: Yes.
- Variable Name:

Step 3: Create “Create Outline” Step (LLM Node 1)
- Click the (+) after the Start node -> Select LLM.
- Rename the node:
Create_Outline. - Configure SYSTEM PROMPT:
“You are an SEO expert. Create a detailed outline consisting of 3 parts: Introduction, Body (3 main points), and Conclusion for the following topic.”
- Configure USER PROMPT:
- Click
Add message - In the
Userfield, enter:Topic: - Press
/key -> Selecttopicfrom theStartnode - Display:
Topic: \{\{Start/(x)topic\}\}
- Click

Step 4: Create “Write Article” Step (LLM Node 2)
- Click the (+) after
Create_Outlinenode -> Select LLM. - Rename the node:
Write_Article. - Configure SYSTEM PROMPT:
“You are a professional Copywriter. Based on the provided outline, write a complete blog post with engaging style, approximately 500 words.”
- Configure USER PROMPT:
- Enter:
Write an article based on the following outline: - Press
/key -> Select Create_Outline -> Selecttext. - Note: Select the
textvariable from the outline node, NOT thetopicvariable from the Start node.
- Enter:

Step 5: Configure Output (End Node)
Finally, we need to output the article to the screen.- Drag a line from
Write_Articlenode to connect to the End node. - Click on the End node.
- In Output Variables, click + Add Variable.
- Select source variable:
- Click the value field -> Select Write_Article -> Select
text. - Name the output variable:
final_article.
- Click the value field -> Select Write_Article -> Select

Testing
Before actual use, test to see if the process runs smoothly.- Click the Run button in the top right corner.
- An input field appears, requesting the Article Topic.
- Enter test: “Benefits of drinking orange juice”.
- Click Run and observe the nodes lighting up sequentially.
- The final result will display the complete article in the right panel.
- Once the output is satisfactory, click
Publish.

Pro Tips
- Add review step: You can add a “Human Review” node in between for manual review of the outline before the Bot writes the article.
- Combine tools: You can add a Tools node (Google Search) at the beginning for the Bot to search for the latest information before writing.
- Multiple output formats: At the End node, you can output both Outline and Article simultaneously by adding 2 output variables.