Questions tagged [watson-dialog]

The IBM Watson Dialog service provides a comprehensive, technology platform for managing conversations between virtual agents and users through an Application Programming Interface (API).

The Dialog service enables your applications to use natural language to automatically respond to user questions, cross-sell and upsell, walk users through processes or applications, or even hand-hold users through difficult tasks. The Dialog service can track and store user profile information to learn more about end users, guide them through processes based on their unique situation, or pass their information to a back-end system to help them take action and get the help they need.
More information: http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/dialog.html

111 questions
6
votes
4 answers

How i can determine negative answers using Watson Conversation

For example: If the user writes in the Watson Conversation Service: "I wouldn't want to have a pool in my new house, but I would love to live in a Condo" How you can know that user doesn't want to have a pool, but he loves to live in a Condo?
6
votes
2 answers

How to implement watson conversation with multiple workspaces

In the webinar it has mentioned about using multiple conversation workspaces to handle different topics of a project (e.g. functional conversations vs off-topics). How should we implement this design? Say if we have two workspaces, one is…
AnthC
  • 63
  • 3
5
votes
2 answers

Passing variables into Watson Dialog

In many situations, it may be helpful to pass known information (e.g. the user's name to present a personalized greeting) into a new Watson Dialog conversation so to avoid asking the user redundant or unnecessary questions. In looking at the API…
Jim Hoskins
  • 270
  • 1
  • 9
4
votes
2 answers

How to set a level of confidence for watson conversation?

I would like to understand how to create a way to redirect the conversation to the anything_else node when confidence is lower then a established limit. I am creating a node triggered by intents[0].confidence < 0.5 that jumps to the anything_else…
3
votes
1 answer

Programmatically start a call with IBM Voice Gateway

I have connected a IBM Voice Agent (https://console.bluemix.net/docs/services/voice-agent/getting-started.html) with a Watson Assistant and a Twilio number. I am able to call my Twilio number and follow a conversation with the assistant. Now…
Nathan H
  • 48,033
  • 60
  • 165
  • 247
3
votes
3 answers

How can we set context variables for IBM Watson from backend

I want to pass some values to frontend in form of context variables in IBM Watson through my Node app. How can I achieve it? I tried to add the value I want to add to current context variable object and sent that back. Still no help. Is there any…
bharadhwaj
  • 2,059
  • 22
  • 35
3
votes
1 answer

how can i test if context variable is undefined on watson dialog condition?

hi can i am creating a watson dialog bot, and i have a context variable that control the flow in some situations... i need to test if a context variable was already defined (exists) in that moment... anyone knows how to do that? i tried…
costamatrix
  • 670
  • 8
  • 17
2
votes
1 answer

How to capture a user's full name from their text input using watson's assistant dialog?

I(as a newbie) am setting up a messenger chatbot using IBM's watson. I want to get a user to type in their information and I save it as a variable. For example: chatbot: What is your name? User: I am Angella Naigaga chatbot saves "Angella…
Anjayluh
  • 1,647
  • 1
  • 13
  • 22
2
votes
1 answer

Watson assistant api calls details

We have developed a watson assistant chatbot and integrated with client application. Now we want know how many times each user calling watson service from client application and its billing details per person. I have enabled the user metrics option…
user2319726
  • 143
  • 1
  • 1
  • 10
2
votes
1 answer

Watson Voice Agent getting splited values in @sys-number

first of all, I'm using Voice Agent with Watson Assistant, so everything here is in a phone call with Voice Agent. I'm having trouble when prompting my users for their 'ticket' code for me to call my external API to get the status of the ticket. The…
2
votes
3 answers

How to trigger a Dialog when Watson assistant chat is giving same intents in a row?

1) when is the user is chatting, system is giving same answer (hitting same intents in row i.e 3 three times) at that time we need to trigger a dialogue that will ask "Sorry i don't know the answer do you want to contact customer care ? 2) Same…
Kum_R
  • 368
  • 2
  • 19
2
votes
1 answer

Watson Conversation get the first key of every element of an array

I am currently working on a chatbot based on IBM Watson conversations. And I'm struggling getting the key out of the enginePower in the filter. I need every key to be displayed in the chat. So a user can select one. The structure looks like…
2
votes
3 answers

Watson Conversation Dialogue, how to save user input using slot

In my Watson conversation dialogue am trying to read user input using slot, my requirement is to prompt user for enter an issue description and save it in a variable named issue_description. but in slot, watson check for intent or entity before…
vjalex
  • 33
  • 1
  • 4
2
votes
1 answer

Calling Watson API from PHP code

I am trying to call Natural Language Understanding Watson API from my PHP code using curl. I have successfully tried curl from terminal. It gives some result on executing this command: curl -u "my_username":"my_password"…
Ankit Shubham
  • 2,989
  • 2
  • 36
  • 61
2
votes
1 answer

Using Watson conversation, how to handle customer, account number etc

I'm creating sample application using Watson conversation API in nodejs. I'm trying to get username and send them to Watson and then I want to say hello "$username", also I want to keep that throughout the conversation so that I can if the user ask…
1
2 3 4 5 6 7 8