LogoLogo
  • 👋START HERE
    • Welcome!
  • ℹ️General
    • Release Notes
      • Full Feature Base Template
      • Services
      • Rule-based Automation
        • May 2025
        • February 2025
        • January 2025
        • December 2024
        • November 2024
        • October 2024
        • September 2024
        • August 2024
        • July 2024
        • June 2024
        • May 2024
        • April 2024
        • March 2024
        • February 2024
        • January 2024
        • 2023
        • 2022
        • 2021
        • Dialog Design Update
    • Glossary of Terms
    • Authentication Methods
      • SSO (Single Sign-On)
      • Built-In User Management
    • Acceptable Use Policy
  • ⚙️Rule-based Automation
    • Overview
      • Account Settings
        • Profile
        • Team
        • Roles and Permissions
          • User Management
          • Project Permissions
      • Basic Concepts
        • Project Management
        • Version Management
        • Multi-Lingual Bots
          • Supported Languages
        • Managing User Interactions
          • Unexpected User Input
          • No User Input
    • Dialog Interface
      • Blocks
        • Conversation Logic
          • Start Conversation
          • Global
          • State
          • Intermediate Response
          • To Previous State
          • End Conversation
        • Subdialog
          • Reusable Subdialogs
        • Phone
          • Continue Listening
          • Call Control
        • Technical Logic
          • Service
          • Condition
          • Storage
        • Other
          • Note
      • Speech Assets
        • Intents
          • Utterances
          • Descriptions
        • Slots
          • Custom Slots
            • List Slots
            • Machine Learning Slots
            • Regex Slots
            • LLM Slots
          • Prebuilt Slots
            • DTMF Slot
        • Text Snippets
        • Dictionary
      • Variables
        • Intents
        • Slots
        • Storage
        • Text Snippets
        • Environments
        • Platform
        • Context
      • Services
        • Service Integration Guide
        • Service Development
        • Service Branches and Error Handling
        • Public Services
          • Date and Birthdate Recognition
          • Spelling Post-Processing for Phone
          • IBAN Validation
          • License Plate Validation
          • Address Search
          • Street Names per Postal Code
          • Email Service
          • SMS Service
          • API Adapter
          • Salesforce-Flow Connector
          • Opening Hours
          • Speech-to-Text Hints
          • Fuzzy Match Names
          • Delay Service
      • Debugger
        • Phone 2
        • WhatsApp
        • Textchat 2
    • Environments Interface
      • Service Keys
    • Deployments Interface
      • Creating a Release
      • Editing a Release
    • Text-to-Speech
      • Azure
      • ElevenLabs
      • OpenAI via Azure (Preview)
      • SSML
        • Audio
        • Break
        • Emphasis
        • Prosody
        • Say-as
        • Substitute
        • Paragraph and Sentence
        • Voice
    • Autocomplete
    • Parloa APIs
      • CallData Service and API
      • Conversation History API
      • Textchat V2 API
    • Phone Integrations
      • Genesys Cloud
        • Setting up the SIP Trunk
        • Sending/Receiving UUI Data
        • Creating a Script to Display UUI
      • SIP
      • Tenios
        • Setting Up an Inbound Connection
        • Setting Up an Outbound Connection
        • Transferring a Call
      • Twilio
      • Public IPs and Port Information
    • AI Integration Overview
      • Dual Intent Recognizer (DIR)
      • Dual Tone Multifrequency (DTMF) Intent
    • Analytics and Debugging
      • Understanding Conversations and Transactions
      • Managing Caller ID Data
      • Hangup Events and Triggered Analytics
      • Analytics Transactions: Data Structure and Insights
      • Dialog Analytics
      • Audit Logs
      • Parloa-hosted Analytics
    • Data Privacy
      • Anonymizing Personally Identifiable Information
    • NLU Training
      • NLU Training Best Practices
    • How To
      • Create a Scalable and Maintainable Bot Architecture
      • Implement OnError Loop Handling
      • Resolve the 'Service Unavailable' Error
    • Reference
      • Parloa Keyboard Shortcuts
      • Frequently Asked Questions (FAQ)
      • JavaScript Cheat Sheet
        • Using Regular Expressions (Regex)
  • 🧠Knowledge Skill
    • Introduction
    • Knowledge Collections
    • Knowledge Sources
    • Knowledge Skill Setup
      • Step 1 – Create a Knowledge Skill Agent
      • Step 2 – Configure a Knowledge Skill Agent
      • Step 3 – Configure a Knowledge Skill Agent
Powered by GitBook
On this page
  • Overview
  • Configuration Overview
  • Customizing Responses
  • Managing Intents
  • Getting Started
  • Welcome Response and LaunchRequest
  • User Intents

Was this helpful?

Export as PDF
  1. Rule-based Automation
  2. Dialog Interface
  3. Blocks
  4. Conversation Logic

Start Conversation

Your Dialog's Entry Point

PreviousConversation LogicNextGlobal

Last updated 1 year ago

Was this helpful?

Overview

The Start Conversation block marks the start of your dialog. This default block is automatically included in each new dialog as a fixed starting point for interactions and, importantly, it cannot be copied or deleted..

Configuration Overview

The Start Conversation block is structured into two main sections:

  1. Responses: Contains predefined responses that the system can use to greet callers or handle initial queries.

  2. Intents: Outlines the various user intents that can be recognized at the start of the conversation, determining the direction the dialog will take.

Detailed Configuration

Within the 'Start Conversation' block, the system is prepared to handle:

  • Standard Greetings: Responses like "Welcome" are set to initiate the conversation with a friendly opening message.

  • DTMF Responses: For touch-tone navigation, the system can recognize DTMF tones and provide the appropriate response.

  • Error Handling: Responses like "Excuse me?" are used when the caller's intent is not clearly understood.

  • Affirmative and Negative Responses: The system can recognize and differentiate between affirmative responses like "Yes" or negative ones like "No".

Customizing Responses

Each response is configurable with elements such as:

  • JSON Payload: For more complex interactions, you can define responses with JSON structures to control the conversation flow dynamically.

Managing Intents

The system uses the provided utterances to detect caller intents. You have the ability to:

  • Add New Intents: By selecting the '+' sign, you can define new intents and associate them with specific responses.

  • Edit Existing Intents: Click on an intent to modify its utterances or linked actions.

  • Local Logic and Global Intents: The system can be configured to handle 'else' intents either locally or globally. Local handling offers context-specific interaction, while global handling provides a standard response across various contexts.

Getting Started

Welcome Response and LaunchRequest

A standard 'Welcome' response is pre-configured in the Start Conversation block, linked to the LaunchRequest intent. For example:

Parloa: "Hello, and welcome to BookEase! How may I help you?"

The removal of the LaunchRequest intent is not recommended as it is integral to the conversation initiation process.

User Intents

Complex Requests: For more nuanced requests, such as "ChangeAddress" or "ReportDamage", the system can discern and route the caller to the appropriate service path (which are ).

SSML & Text: Customize the spoken response using Speech Synthesis Markup Language () for natural expression.

The bot then awaits your response to continue the conversation, either transitioning to a or concluding the interaction.

The Start Conversation block functions identically to a State block in all other respects. For further details, refer to the block documentation.

⚙️
Subdialogs
SSML
Subdialog
State
Start Conversation Block