Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Designer - Visual Builder

Your no-code bot building studio

Designer Interface Screen

Overview

Designer is the visual bot builder in General Bots Suite. Create conversation flows, design user interfaces, and build automations without writing code. Designer uses a drag-and-drop interface that makes bot development accessible to everyone.


Features

Creating a New Flow

Step 1: Open Designer

  1. Click the apps menu (⋮⋮⋮)
  2. Select Designer
  3. Click + New Flow

Step 2: Configure Flow

SettingDescription
Flow NameDescriptive title (e.g., “Customer Support”)
DescriptionBrief explanation of what the flow does
Start fromBlank canvas, Template, or Import from file

Step 3: Add Components

Drag components from the left panel onto the canvas.

Step 4: Connect Components

Click and drag from one component’s output to another’s input.


Component Types

Communication Components

ComponentIconPurpose
Talk💬Send a message to the user
Hear👂Wait for user input
AskAsk a question and capture response
Show🖼️Display an image, card, or media
Menu📋Show clickable options

Talk Component Options:

  • Message text with variations (AI picks randomly)
  • Use AI to personalize
  • Include typing indicator
  • Delay before sending

Ask Component Options:

  • Question text
  • Variable name to save response
  • Expected type: Text, Number, Email, Phone, Date, Yes/No, Multiple Choice
  • Validation message for invalid input

Logic Components

ComponentIconPurpose
Branch🔀Conditional logic (if/else)
Loop🔄Repeat actions
Switch🔃Multiple conditions
Wait⏱️Pause execution
End🏁End the flow

Branch Configuration:

  • Set condition using variable comparisons
  • Add multiple AND/OR conditions
  • TRUE and FALSE output paths

Action Components

ComponentIconPurpose
ActionExecute a BASIC keyword
API Call🌐Call external API
Database🗄️Query or update data
Email✉️Send an email
Set Variable📝Store a value

Action Error Handling:

  • Stop flow and show error
  • Continue to error path
  • Retry N times

AI Components

ComponentIconPurpose
AI Chat🤖Natural language conversation
Search KB🔍Search knowledge base
GenerateGenerate text with AI
Classify🏷️Categorize user input
Extract📤Extract data from text

Classify Example Categories:

  • support - Customer needs help with a problem
  • sales - Customer interested in buying
  • billing - Payment or invoice questions
  • feedback - Customer giving feedback
  • other - Anything else

Working with the Canvas

ActionHow To
PanClick and drag on empty space
Zoom inScroll up or click [+]
Zoom outScroll down or click [-]
Fit to screenClick [⌖] or press F
Select multipleHold Shift and click
Box selectHold Ctrl and drag

Canvas Controls

ControlPurpose
[+] [-]Zoom in/out
[⌖]Fit to view
GridShow/hide grid
SnapSnap to grid
AutoAuto-arrange components

Using Variables

Variables store information during the conversation.

System Variables (read-only):

VariableDescription
{{user.name}}User’s display name
{{user.email}}User’s email address
{{user.phone}}User’s phone number
{{channel}}Current channel (web, whatsapp, etc)
{{today}}Today’s date
{{now}}Current date and time
{{botName}}Name of this bot

Flow Variables: Variables you create using Ask or Set Variable components.

Reference variables with double curly braces: {{variableName}}


Testing Your Flow

Preview Mode:

  1. Click Preview button
  2. A chat window opens
  3. Test the conversation
  4. Watch the flow highlight active steps

The Preview panel shows:

  • Flow visualization with active step highlighted
  • Test conversation area
  • Current variable values
  • Clear and Reset buttons

Deploying Your Flow

When your flow is ready:

  1. Click Deploy
  2. Choose deployment options:
    • Production or Staging only
    • Immediate or Scheduled
  3. Configure triggers:
    • Specific phrases (e.g., “help”, “support”)
    • As default fallback
    • On schedule
  4. Review changes since last deploy
  5. Confirm deployment

Templates

Start faster with pre-built templates:

TemplateDescription
📋 FAQ BotAnswer common questions from knowledge base
🎫 SupportTicket creation and tracking
💰 SalesLead capture and qualification
📅 AppointmentSchedule meetings and appointments
📝 FeedbackCollect customer feedback
🚀 OnboardingNew user welcome and setup guide

Keyboard Shortcuts

Canvas

ShortcutAction
Space + DragPan canvas
Ctrl + +Zoom in
Ctrl + -Zoom out
Ctrl + 0Reset zoom
FFit to screen
GToggle grid
DeleteDelete selected
Ctrl + DDuplicate selected
Ctrl + ZUndo
Ctrl + YRedo

Components

ShortcutAction
TAdd Talk component
HAdd Hear component
AAdd Ask component
BAdd Branch component
EEdit selected component
Ctrl + CCopy component
Ctrl + VPaste component
Ctrl + XCut component

Flow

ShortcutAction
Ctrl + SSave flow
Ctrl + PPreview flow
Ctrl + EnterDeploy flow
Ctrl + EExport flow
Ctrl + IImport flow

Tips & Tricks

Design Tips

💡 Keep flows simple - Break complex flows into smaller sub-flows

💡 Use descriptive names - “Ask for Email” is better than “Step 3”

💡 Add comments - Right-click any component to add notes

💡 Test often - Preview after every few changes

Organization Tips

💡 Use folders to organize related flows

💡 Version your flows - Save before major changes

💡 Use templates for consistent starting points

💡 Color-code paths - Use colors for different intents

Performance Tips

💡 Minimize API calls - Cache results when possible

💡 Use AI classification early - Route users quickly

💡 Set timeouts - Don’t let flows hang indefinitely

💡 Handle errors - Always add error paths


Troubleshooting

Flow not triggering

Possible causes:

  1. Flow not deployed
  2. Trigger words not matching
  3. Another flow has priority

Solution:

  1. Click Deploy and confirm it’s active
  2. Check trigger configuration
  3. Review flow priority in settings
  4. Test with exact trigger phrases

Variables not working

Possible causes:

  1. Typo in variable name
  2. Variable not set yet in flow
  3. Wrong scope

Solution:

  1. Check spelling matches exactly (case-sensitive)
  2. Ensure variable is set before being used
  3. Use Preview mode to watch variable values
  4. Check the Variables panel for current values

Component errors

Possible causes:

  1. Missing required configuration
  2. Invalid connection
  3. Action failed

Solution:

  1. Click the red error icon for details
  2. Fill in all required fields
  3. Check that connections make logical sense
  4. Review error logs in Preview mode

Preview not matching production

Possible causes:

  1. Changes not deployed
  2. Different data in production
  3. External service differences

Solution:

  1. Deploy latest changes
  2. Test with same data as production
  3. Check API connections are identical
  4. Review production logs

BASIC Integration

Designer flows generate BASIC code. You can view and customize it.

View Generated Code

Right-click any component and select “View Code”:

' Generated from "Customer Support" flow

TALK "Hello! How can I help you today?"

HEAR userMessage AS TEXT

intent = CLASSIFY userMessage INTO ["support", "sales", "billing", "other"]

IF intent = "support" THEN
    TALK "I'm sorry to hear you're having issues!"
    HEAR orderNumber AS TEXT "What's your order number?"
    result = SEARCH KB "order " + orderNumber
    TALK result.answer
ELSE IF intent = "sales" THEN
    ' ... sales flow
END IF

Mix Designer and Code

Use the Code component to add custom BASIC:

' Custom calculation
discount = 0

IF userType = "premium" THEN
    discount = orderTotal * 0.15
ELSE IF orderTotal > 100 THEN
    discount = orderTotal * 0.05
END IF

finalPrice = orderTotal - discount

See Also