LogoLogo
  • 👋START HERE
    • Welcome!
  • â„šī¸General
    • Release Notes
      • Full Feature Base Template
      • Services
      • Rule-based Automation
        • 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
  • Managing Global Intents
  • Determine Intent Precedence

Was this helpful?

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

Global

Your Dialog's Global Behavior

PreviousStart ConversationNextState

Last updated 1 year ago

Was this helpful?

Overview

The Global block handles inputs from callers that are applicable at any point in the conversation, irrespective of the current state of the dialog. It is composed of several predefined that can be triggered by . Each intent corresponds to a specific action or response by the conversational AI. For example:

  • on error – Activated when an error is detected in the conversation flow, guiding you towards a resolution.

  • else – Serves as a catch-all for any utterances that do not match other specified intents, ensuring that you or the caller remain engaged with meaningful responses.

Managing Global Intents

Add a Global Intent
  1. Click the + button.

  2. Click the + New Intent button.

  3. In the pop-up window, select Custom Intent.

  4. Enter an Intent name, and click Create.

  5. Add a Description for context or multiple Utterances that the intent should capture. Note: If you select Utterances, keep in mind that the more utterances provided, the better the AI can recognize the intent.

  1. Click Close.

Edit a Global Intent
  1. To modify an intent, click the edit (pencil) icon next to the intent.

  2. Select either Description or Utterances, based on your configuration.

  3. Implement your changes to the prompt or utterances as needed.

  4. Click Close.

Delete a Global Intent
  1. Click the edit (pencil) icon for the intent you want to delete.

  2. Select either Description or Utterances depending on what you intend to remove.

  3. Erase the prompt text or click the Trash icon to delete an utterance.

  4. Click Close.

Select Detection Method

By default, Utterances is used to detect intents. If you prefer to use Description as the primary detection method, you can select it in the Detect Intent by section.

Determine Intent Precedence

The global 'else' intent provides a general response, whereas a local 'else' offers context-specific interaction. Below is an example of a local 'else' intent within a State block:

When the same intent is defined both locally (in a specific block) and globally, the local definition is prioritized. This prioritization ensures that responses are contextually appropriate, enhancing interaction relevance.

âš™ī¸
State
intents
utterances
Global Block
Local 'else' Intent