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
0
votes
1 answer

Create a dialog node that allows for document upload in Watson Assistant

I have created a chat-bot using IBM Watson Assistant and I am trying to find a way to allow the end user to upload documents through the Watson API. Has anyone else tried to achieve this before?
RJAS
  • 11
  • 2
0
votes
3 answers

Re-using entities in Watson Assistant results in automatically filled context variables

So to my understanding, entities are supposed to be re-used amongst different slots to optimize for the fact that you may want to accept a user input info for similar data types i.e. two separate slots "what is your household income", "what is your…
Elmir Kouliev
  • 77
  • 1
  • 12
0
votes
2 answers

Watson conversation does not operate as it is mentioned in the documents

I am fairly new to Watson conversation. I found an issue which is matter to my project and appreciate if someone could help me with that. In Dialog overview document, it is clearly mentioned that Watson will look at the child node to search for…
0
votes
1 answer

Adding slot changing the intent

I have created a dialog which checks for some Intent and entity to trigger the response, I have also added slots to capture the missing entities. But when user enter the slot value it changes the intent thus causing change in final response. I have…
0
votes
1 answer

Watson Assistant -- Prompting for required slot not working

I have this node on the dialog tree of my Watson Assistant So this node should be triggered when an entity @courses with either the value course or math is found. In case the value of the entity courses is course but not math then the slot still…
Atirag
  • 1,660
  • 7
  • 32
  • 60
0
votes
2 answers

How to extract the synonym values from an entity in Watson Conversation

I need to extract all the synonym values for a particular entity. For example, I have an entity named Vehicle with values Car and Bus. For Car I have three synonyms, Mercedes,Volvo and Audi. Now what I need is when the entity Vehicle is detected in…
0
votes
1 answer

What does the application layer in IBM watson architecture mean?

I created android chatbot where my android app is the Interface directly communicating with the conversation workspace. There is no other application running in between my android app and conversation workspace. In IBM watson architecture there is…
Manish Pathak
  • 3,224
  • 1
  • 18
  • 22
0
votes
1 answer

Different behaviour of dialog nodes in watson console and mobile app

I have created few dialogs in the watson console and in try it out panel the nodes are traversed by in proper way by giving priority to child nodes but in android app (watson android sample) it gives priority to the outer nodes. Why there is a…
Manish Pathak
  • 3,224
  • 1
  • 18
  • 22
0
votes
2 answers

In ibm watson conversation, How to extract a string after a certain word into the context variable?

for e.g. "show me an image of Eiffel tower" ... so i want Eiffel tower to be stored in the variable. that is i want any word after "of" to be stored. how to do this? . Thanks in advance.
0
votes
1 answer

Calling on premise webservice through Nodejs and getting its response in cloud Dialog nod

I created android chatbot using IBM watson, while chatting with watson at some point I will stop the conversation and call my webservice to get the conversation result from my database. I want to call my on premise webservice to get the results from…
Manish Pathak
  • 3,224
  • 1
  • 18
  • 22
0
votes
1 answer

IBM Watson conversion for dialog

I created one project with watson conversion. Flow is like:(sorry i can't show my dialog flow but i will try to explain it) (W:Watson,U:User) U:what documents required for open account? W: Name, Email, Contact. Can I open it for you? U:Yes W:Great,…
Kalpesh
  • 1
  • 3
0
votes
0 answers

Conversation-with-Discovery "Exception on Query:null" - No Response from Chat App

I have successfully been able to deploy and run this demo for using conversation-with-discovery. I have spent the last 2 weeks trying to run the application with my own data, and provide a query on the Chat App localhost that I know should provide…
0
votes
1 answer

How can we combine entities and sys-numbers from user input to create desired output (response)?

We are working on a Watson Conversation project for a retail company and want to enable users of the company's app to add products to their shopping list via speech. We would like for the user to add multiple items to the basket. Our example user…
0
votes
2 answers

how to use jump to if I need to evaluate a condition of context variable for two different nodes at same time

I have one parent node ,based on the user input Iam setting a context variable at my application level eligibility:yes or no and passing back.And for my parent node I have two child nodes for conditions $eligibility=="yes" and $eligibility=="no".So…
user7350714
  • 365
  • 1
  • 6
  • 20
0
votes
1 answer

Error while calling Discovery service in conversation-with-discoveryapplication

I have used https://github.com/watson-developer-cloud/conversation-with-discovery code and deployed application in Bluemix, when I am testing the application conversation is working but discovery service is not working . I have added OUT_OF_Scope…