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
  • Debugging Releases
  • Conversational Elements
  • Flags for Error Handling
  • Managing User Variables
  • Understanding Internal Variables
  • Platform-Specific Particularities
  • Caller History Insights

Was this helpful?

Export as PDF
  1. Rule-based Automation
  2. Dialog Interface

Debugger

Find and Fix Errors Quickly and Easily

PreviousDelay ServiceNextPhone 2

Last updated 1 year ago

Was this helpful?

Parloa’s Debugger is designed to track transactions, logging every request to, and response from, the platform, along with every dialog node traversed.

Debugging Releases

Debugging releases are strictly for internal use. When accessed on multiple devices, all dialogs are linked to a single user, making this release unfit for client projects. To test on different devices, refer to the section on .

Ensure debugging releases are not used for client projects to avoid data inconsistency.

The latest 15 transactions are displayed, with older ones being omitted for clarity.

Conversational Elements

Conversational elements mainly correspond to specific blocks from previous conversations. These elements feature eye symbols on the right side, selecting which navigates and zooms onto the respective block in the Graph, a visual representation of the dialog flow.

Flags for Error Handling

Flags are used within the Debugger to indicate errors or warnings. A flagged conversational element provides detailed insights into the nature of the error when selected. For example, an error in a block might be due to an incorrectly configured URL. Addressing warnings early on is recommended to prevent any unexpected dialog behavior.

It's advisable to address these warnings to prevent unexpected behavior.

Managing User Variables

Initially, the user variables section may display 'empty...' until variables receive assigned values through the use of storage or service blocks. Once a value is stored or modified, the associated block will be highlighted, providing a visual cue of the change.

For instance, if the variable 'roomName' is set to 'wolverine', the corresponding storage block 'saveRoom' will reflect this in the debugger.

Understanding Internal Variables

  • currentNodeID – Indicates the current node and the subsequent node in the execution, with green marking the next node and red marking the current node.

  • originNodeID – Represents the block where the current dialog request initiated.

  • sessionCount – Counts the dialogs since the skill's first launch.

  • requestCount – Counts all dialog requests since the skill's first launch.

  • Prompts – Lists the recent prompts and reprompts from the last response of the dialog.

  • accountIsLinked – States true if the user using the skill has it linked with a specific account; otherwise, the value is false.

  • isNewConversation – The value of this variable equals true if the current request of the dialog is the beginning of the dialog or the start of the conversation. The variable states false if the current request is not the start of a conversation.

Platform-Specific Particularities

Each platform supported by Parloa has unique Debugger attributes, offering tailored debugging experiences. Invocation names should be distinct across platforms to avoid any overlap or confusion.

For phone-based interactions, if the caller ID is hidden, the variable will denote this with 'anonymous', ensuring privacy is maintained in the Debugger logs.

Caller History Insights

In the Debugger, you can access a history of the last 10 caller numbers or caller IDs associated with a particular release. Each caller entry provides a detailed breakdown of transactions and conversational elements from the last 30 days:

  • Transactions – The last 15 transactions are displayed, as per the existing documentation.

  • Conversational Elements – Up to the last 50 conversational elements are listed, providing a comprehensive view of the dialog flow.

If a caller conceals their number, the 'Caller ID' variable will commence with 'anonymous', enabling the viewing of anonymized calls in the Debugger logs.

âš™ī¸
releasing
Service