Skip to main content
Chatbot

Slot Filling

Slot filling is the process by which a chatbot collects all the required pieces of information - the slots - it needs to complete a task, prompting the user for anything missing until every slot has a valid value.

Mar 4, 2026
8 min read
Conferbot Team

Key Takeaways

  • Slot filling is how a chatbot gathers all the required details for a task, prompting for anything missing until every slot has a valid value.
  • A slot is a required input for the current task, while an entity is a recognizable type of data - entities fill slots.
  • Validation checks that each value is usable, and graceful re-prompting explains what went wrong while capping attempts to avoid trapping users in loops.
  • The best slot-filling flows behave like flexible conversations - accepting values in any order, capturing multiple slots at once, and confirming before acting.

What Is Slot Filling?

Slot filling is the process by which a chatbot gathers all the pieces of information it needs to complete a task. Each required piece is a slot, and the bot keeps the conversation going until every slot has a valid value. Only then can it act - book the appointment, place the order, or open the ticket.

Think of a slot as a blank in a form. To book a flight, the bot needs an origin, a destination, a date, and a passenger count. Those are four slots. If the user says "book me a flight to Paris on Friday," the bot fills the destination and date slots from that message but still needs the origin and passenger count, so it asks for them one at a time.

Why It Matters

Slot filling is what lets a chatbot do things rather than just answer questions. Any transactional task - scheduling, ordering, collecting a lead, processing a request - depends on reliably gathering complete, valid information. Done well, it feels like a natural conversation; done poorly, it feels like an interrogation. It is one of the most important patterns in conversation design.

Slots vs Entities

Slots and entities are closely related and often confused, but they play different roles. The distinction is worth getting right because it shapes how you design a flow.

  • An entity is a type of data the bot can recognize inside a message - a date, a city, an email address, a product name. Recognizing it is the job of entity extraction.
  • A slot is a required input the bot is actively trying to collect for the current task. Slots are goal-driven; entities are just recognized data.

How They Connect

Entities fill slots. When a user says "deliver to London," the bot extracts "London" as a city entity and uses it to fill the destination slot. But a slot is only satisfied once it has a valid value - so the bot knows which slots are still empty and keeps asking until the form is complete.

AspectEntitySlot
DefinitionA recognizable type of dataA required input for a task
Driven byLanguage understandingThe task's requirements
StatePresent or absent in a messageFilled or empty for the task
Example"London" recognized as a cityDestination slot needing a city

How Slot Filling Works

Slot filling runs as a small loop that continues until every required slot is satisfied. The steps are consistent across almost every platform.

1. Define the Slots

The designer lists what the task needs. For a pizza order that might be size, crust, toppings, and delivery address - each a slot, some required and some optional.

2. Pre-Fill From the First Message

When the intent is recognized, the bot fills any slots it can from the opening utterance. "A large pepperoni pizza" already fills size and toppings.

3. Prompt for What Is Missing

The bot asks for each empty slot, ideally one at a time and in a sensible order. Well-chosen prompts and quick replies make this fast.

4. Validate Each Value

As values come in, the bot checks they are usable - a real date, a properly formatted phone number, an address it can deliver to.

5. Confirm and Act

Once all slots are filled and valid, the bot reads the details back and completes the task. In a platform like Conferbot, you configure slots visually and the flow handles the asking, validating, and re-prompting for you.

Validation and Re-Prompting

Collecting a value is not enough - the bot has to make sure the value is actually usable. This is where validation and re-prompting come in, and they are what separate a robust flow from a fragile one.

Validation

Validation checks each slot value against rules before accepting it. Common checks include:

  • Format - is the email or phone number well-formed?
  • Range - is the date in the future, is the quantity within limits?
  • Allowed values - is the chosen size one you actually offer?
  • Availability - is that appointment slot still open?

Re-Prompting

When a value fails validation or the bot cannot understand the reply, it re-prompts - asking again, this time with more guidance. A good re-prompt explains what went wrong: "That date has already passed. Please choose a date after today." A poor one just repeats the same question, which frustrates users fast.

Guarding Against Loops

Sensible designs cap how many times a slot re-prompts. After a couple of failed attempts, the bot should offer options or trigger a fallback or handoff rather than trapping the user in a loop.

Best Practices for Slot Filling

These practices keep slot filling feeling like a conversation instead of a form to be endured.

1. Only Ask for What You Need

Every slot adds friction. Cut optional fields ruthlessly and collect only what the task truly requires.

2. Capture Multiple Slots at Once

If a user volunteers several details in one message, fill all of them - do not re-ask for information they already gave. This is one of the biggest satisfaction wins.

3. Order Prompts Logically

Ask in the sequence a person would expect, and put the easiest or most natural questions first.

4. Use Buttons for Constrained Choices

When valid answers are a known set - sizes, times, yes or no - offer quick replies instead of free text. It reduces errors and speeds things up.

5. Confirm Before Committing

Read collected slots back before any consequential action so the user can catch mistakes.

6. Let Users Correct Earlier Answers

People change their minds. Let a user revise a filled slot without restarting the flow.

Slot Filling in Real Conversations

Slot filling shows up in nearly every transactional chatbot. A few common patterns:

Appointment Booking

Slots: service, date, time, and contact details. The bot pre-fills whatever the user mentions, validates that the chosen time is available, and re-prompts if a slot is missing or a time is taken - a natural fit for conversational commerce in services businesses.

Lead Capture

Slots: name, email, company, and need. The bot collects these across a short conversation, validates the email, then routes a qualified lead to sales.

Order Placement

Slots: product, quantity, variant, and shipping address. The bot fills what it can from the first message, asks for the rest, and confirms the full order before checkout.

Support Ticket Creation

Slots: issue type, description, order number, and urgency. Once filled, the bot creates the ticket or escalates through human handoff when the issue needs a person. In each case, the slots are the checklist the bot must complete before it can act.

Common Challenges in Slot Filling

Even a well-planned slot-filling flow runs into predictable difficulties. Anticipating them makes for a sturdier design.

ChallengeWhat HappensHow to Handle It
Users give info out of orderDetails arrive before the bot asksAccept and store any slot value at any time
Multiple values in one messageBot asks again for what was givenExtract and fill all slots at once
Ambiguous input"Tomorrow" or "the usual" is unclearConfirm interpretation before accepting
Repeated validation failuresUser gets stuck in a loopCap re-prompts, then offer options or handoff

The Common Thread

Most slot-filling problems come from treating the flow as a rigid form rather than a flexible conversation. Real people supply information in their own order and sometimes all at once. A flow that accepts values whenever they arrive and validates gracefully outperforms one that marches through a fixed script. A no-code platform lets you test these paths quickly.

Why Slot Filling Is Central to Task-Based Chatbots

Slot filling is the mechanism that turns understanding into action. A bot can recognize an intent and extract entities perfectly, but until it has gathered every required detail, it cannot actually complete the user's task. That makes slot filling the backbone of any bot that does more than answer questions.

Where It Sits in the Pipeline

Slot filling depends on the layers beneath it. Intent recognition identifies the task, entity extraction supplies candidate values, and slot filling assembles a complete, valid request. It then hands a finished set of data to whatever integration carries out the task.

The Payoff of Getting It Right

Robust slot filling is the difference between a chatbot that generates leads, bookings, and orders and one that collects half-finished forms. Because it directly shapes completion rates, it deserves real care. Teams that validate inputs, capture multiple slots at once, and re-prompt gracefully see far higher completion than those that force a rigid script.

Frequently Asked Questions

What is slot filling in a chatbot?
Slot filling is the process by which a chatbot collects all the required pieces of information for a task. Each required piece is a slot, and the bot keeps prompting the user until every slot has a valid value - only then can it complete the action, such as booking an appointment or placing an order.
What is the difference between a slot and an entity?
An entity is a type of data the bot can recognize in a message, such as a date or a city. A slot is a required input the bot is actively trying to collect for the current task. Entities fill slots: the bot extracts an entity from a message and uses it to satisfy the slot it needs.
What is re-prompting in slot filling?
Re-prompting is when the bot asks again for a slot because the value failed validation or could not be understood. A good re-prompt explains what went wrong and offers guidance, rather than just repeating the same question. Designs should cap re-prompts to avoid trapping users in a loop.
How does a chatbot validate slot values?
The bot checks each value against rules before accepting it - verifying formats like emails and phone numbers, ranges like future dates, allowed values like offered sizes, and availability like open appointment times. If a value fails, the bot re-prompts the user for a corrected one.
Can a chatbot fill multiple slots from one message?
Yes, and it should. If a user says "a large pepperoni pizza to 5 Main Street," a good bot fills the size, topping, and address slots all at once instead of re-asking for details the user already gave. Capturing multiple slots per message is one of the biggest satisfaction wins.
What happens if a user gives information out of order?
A well-designed flow accepts and stores any slot value whenever it arrives, even before the bot has asked for it. Real people volunteer details in their own order, so the flow should track which slots are still empty and only prompt for those, rather than forcing a fixed sequence.
Omnichannel Platform

One Chatbot,
Every Channel

Your chatbot works seamlessly across WhatsApp, Messenger, Slack, and 6 more platforms. Build once, deploy everywhere.

View All Channels
Conferbot
online
Hi! How can I help you today?
I need pricing info
Conferbot
Active now
Welcome! What are you looking for?
Book a demo
Sure! Pick a time slot:
#support
Conferbot
New ticket from Sarah: "Can't access dashboard"
Auto-resolved. Password reset link sent.
Free Chatbot Templates

Ready to Build Your
Chatbot?

Browse free templates for every industry and deploy in minutes. No coding required.

100% Free
No Code
2-Min Setup
Lead Generation
Capture & qualify leads
Customer Support
24/7 automated help
E-commerce
Boost online sales