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
  • Standardizing User Inputs
  • Using Pre-Built Slots Across Platforms
  • Prebuilt Slot Types
  • Using Pre-Built Slots In a Response
  • Pre-Built Slots

Was this helpful?

Export as PDF
  1. Rule-based Automation
  2. Dialog Interface
  3. Speech Assets
  4. Slots

Prebuilt Slots

Understanding Parloa's Duckling-based Pre-Built Slots

Pre-built slots enable you to process common user inputs consistently and efficiently. These slots, based on Duckling, simplify the extraction of key information from sentences. Let's explore how these pre-built slots work and how you can leverage them effectively.

Standardizing User Inputs

Imagine a user wants to repay a certain amount of money they owe. For instance:

Hi , I owe $60, can I pay this amount back please?

In this case, the extracted entity is the amount $60. This is where the amountOfMoney pre-built slot comes into play. It specializes in handling various currency types.

Using Pre-Built Slots Across Platforms

If you're utilizing platforms other than Phone 2 (such as Phone V2 or Textchat), it's important to define the pre-built slot types within each slot's respective Platforms tab. This ensures consistent behavior and understanding across different interfaces.

Prebuilt Slot Types

The following lists all the pre-built Slot types:

Type
Description

amountOfMoney

Currency types like 10 EUR, 2â‚Ŧ, 1.34 Euro, 100 $.

distance

Distances, such as 10 km or 1 cm.

duration

Time durations like 1 second or 3 hours.

email

Email addresses, such as hello@world.com.

number

123 (No spaces between values)

ordinal

Description of an order 1st-45th.

phoneNumber

Phone numbers, including international formats like +49302873737.

dateTime

Moments in time, whether it's yesterday, today, or a specific time.

volume

Volume measurements, like 3 liters or 20 ml.

url

Web page addresses, such as www.parloa.com.

distanceInterval

An interval between two distances: 2 to 3 km, from three to five kilometers.

dateTimeInterval

The duration of time: last week, from yesterday to today, 1 p.m. to 2 p.m.

volumeInterval

A volume range: 3-5 liters, 20-50 ml.

Using Pre-Built Slots In a Response

When you select a prebuilt slot, the first tab Info displays all relevant information, including the Available Data in Javascript. The following example shows the Slot amountOfMoney's available date:

"slots": [
	{
		"extractor": "DucklingEntityExtractor",
		"value": {
			"value": 60,
			"unit": "EUR"
		},
		"confidence": 1,
		"entity": "amountOfMoney",
		"additionalInfo": {
			"value": 60,
			"type": "value",
			"unit": "EUR"
		},
		"start": 0,
		"end": 3,
		"processors": [],
		"text": "60â‚Ŧ"
	}
]

Pre-Built Slots

The following table lists the pre-built slots, categorized by language and slot type.

To view all table columns, please scroll horizontally.

Language

amountOfMoney

creditCardNumber

distance

duration

email

numeral

ordinal

phoneNumber

quantity

temperature

time

timeGrain

url

volume

Afrikaans

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Arabic

✅

✅

❌

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Bengali

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Bulgarian

✅

✅

✅

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Burmese

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Catalan

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

✅

Chinese

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Croatian

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Czech

✅

✅

✅

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Danish

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Dutch

✅

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

English

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Estonian

✅

✅

❌

❌

✅

✅

✅

✅

❌

❌

❌

❌

✅

❌

Finnish

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

✅

✅

❌

French

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Georgian

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

German

✅

✅

✅

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

✅

Greek

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Hebrew

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Hindi

✅

✅

❌

✅

✅

✅

✅

✅

❌

✅

❌

✅

✅

❌

Hungarian

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Icelandic

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Indonesian

✅

✅

❌

❌

✅

✅

✅

✅

❌

❌

❌

❌

✅

❌

Irish

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

✅

Italian

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

✅

Japanese

✅

✅

❌

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

❌

Kannada

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Khmer

✅

✅

✅

❌

✅

✅

✅

✅

✅

✅

❌

❌

✅

✅

Korean

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Lao

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Malayalam

✅

✅

❌

❌

✅

✅

✅

✅

❌

❌

❌

❌

✅

❌

Mongolian

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

Nepali

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Norwegian-BokmÃĨl

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Persian

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Polish

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Portuguese

✅

✅

✅

❌

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Romanian

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Russian

✅

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

Slovak

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Spanish

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

✅

Swahili

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Swedish

✅

✅

✅

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Tamil

✅

✅

❌

❌

✅

✅

✅

✅

❌

❌

❌

❌

✅

❌

Telugu

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Thai

✅

✅

❌

❌

✅

✅

❌

✅

❌

❌

❌

❌

✅

❌

Turkish

✅

✅

✅

✅

✅

✅

✅

✅

❌

✅

✅

✅

✅

✅

Ukrainian

✅

✅

❌

✅

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

Vietnamese

✅

✅

❌

❌

✅

✅

✅

✅

❌

❌

✅

✅

✅

❌

​

PreviousLLM SlotsNextDTMF Slot

Last updated 1 year ago

Was this helpful?

âš™ī¸