Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:


Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,


Post your ideas

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

IBM Employees should enter Ideas at https://ideas.ibm.com


Status Not under consideration
Workspace watsonx Assistant
Created by Guest
Created on Sep 6, 2019

Gathering information with slots multiple times

Currently the slots are prompted once like the pizzeria example. You can order one pizza. But what if the customer wants more pizzas in one order?

 

My idea is a slot option "Prompt for multiple" like in the attached picture.

If activated the first slot will ask for the amount of data to ask for and create a JSONArray in context.

"context": {

  "slot_data": "<? new JSONArray() ?>

}

If all slots are filled the context data will be appended as an JSONObject to the slot_data:
$slot_data.append({"slot1": $slot1, "slot2": $slot2, ...})

If an amount is set all slots will be prompted again until $slot_data.size() == amount ("Now choose your next pizza").

If no amount is set and all slots are filled, the customer will be asked if he/she wants to add more data ("Do you want to order one more pizza?").
If $slot_data.size() has reached the amount or the customer don't want add more data, the dialog will continue in the next node. 

 

Developers could set a minimum and maximum to the $slot_data.size() with a response if the amount is not in the limits.

 

If Watson Assistant would support looping through dynamic arrays, the slot_data could be processed further in the dialog. I already created an request for that: https://ibm-data-and-ai.ideas.aha.io/ideas/ASSISTANT-I-218

 

This feature gives new opportunities to ask your customers for multiple data, like adding more data to orders, peoples contact info and many more.