Questions tagged [watson-conversation]

Watson Assistant (formerly Watson Conversation) is a Watson Developer Cloud service that combines a number of cognitive technologies to easily simulate a more human-like conversational interface. See https://www.ibm.com/watson/services/conversation/ for details. For API reference see: https://www.ibm.com/watson/developercloud/conversation/api/v1/

790 questions
3
votes
2 answers

IBM Watson - Conversation API integration returns Resource Not Found error (404)

I am trying to integrate watson from salesforce (Http Callout) and received 404 error. Then I tried the sameusing Postman tool but getting the same result Added conversation credentials in request header Request…
Ram
  • 33
  • 1
  • 5
3
votes
2 answers

curl: (6) Could not resolve host: —-header

This is my Command and i'm using Mac os, curl -X POST \ -u "{username}":"{password}" —-header "Content-Type:application/json" --data "{\"input\": {\"text\": \"Turn on the lights\"}, \"context\": {\"conversation_id\":…
User 1278
  • 177
  • 2
  • 2
  • 8
3
votes
1 answer

Is there a programmatic way to export intents for Watson Conversation?

I am aware you can go to the Watson Conversation interface, right click on a workspace, and download the JSON of a workspace, which contains the intents, as it says here: Is there any way to export intents for watson conversation? However, I need to…
Renan
  • 33
  • 5
3
votes
1 answer

can we make Watson call external API to retrieve relevant response data, instead of loading whole data in html, json or txt format

When user asks a question to Watson, it should use AI to decouple the question and call respective API which handles retrieving data from database (SQL). For example: I have list of movies, actors, no of times each movie is watched etc stored in…
3
votes
1 answer

Formula in Watson Conversation

I have been using Watson Conversation for quite some time. But recently I needed to put up formulas in my Watson Response. How do I achieve it? Is there a way to represent formula/equations in my Dialog flow?
Sabiha Taskin
  • 113
  • 11
3
votes
1 answer

How to make Watson capture a sequence of numbers (input.text.extract)

In my example, I ask for a personal documentation number, the number has 11 digits, and I need that in case the user type the 11 numbers correctly the watson continue with the conversation, and if not, the watson will inform a message defined by me.…
Sayuri Mizuguchi
  • 5,250
  • 3
  • 26
  • 53
3
votes
3 answers

Bluemix Watson Conversation API to manage intents, entities

The documented API only allows interaction with the Watson Conversation service once it is configured. Is there any API which will allow the configuration. For example create intents, entities etc...
3
votes
1 answer

IBM Watson Conversation with existing Database integration

Im looking to implement IBM Watson Conversation in my project but one thing i couldnt understand is, How to integrate it with real time search. Example I want to provide Hotel Search Service to my customer, i want to extract entities like City,…
syv
  • 3,528
  • 7
  • 35
  • 50
3
votes
1 answer

Watson Conversation supports many Intents with same common words like 'Yes'?

Watson Conversation supports many Intents with same word? How to avoid wrong confidence association? Example: Did you see that video http://....? Condition: Intent #see with values: "I see", "I saw", "Yes", etc.. Did you read that blog post…
Bruno Braga
  • 117
  • 10
3
votes
2 answers

How to make Watson Conversation Api Invoke a web Application Url when User Enters an Input?

I have a spring mvc application and I would like to make my user call a bot and the bot based on user input should access a url and based on the response provide an answer.How could I achieve this in Java?
briantaurostack7
  • 1,193
  • 2
  • 14
  • 36
3
votes
1 answer

How to collaborate with another developer when using watson conversation?

I created a new bluemix account and am setting up a watson conversation with intents, entities and dialogs. How can I work with another engineer on the same project? Is there a "shared" project concept where we can both log and and update…
Peter Kellner
  • 14,748
  • 25
  • 102
  • 188
3
votes
1 answer

Watson Conversation - Why is the ANYTHING ELSE node not chosen

I build the "anything else" node at the and of my dialog. When entering , just a dummy, weird text like "dsajhfkjhfajfk" then - all the time, it seems like Watson is by default choosing the semi last intend node... instead of going into the…
3
votes
1 answer

Is including additional information in the output object a good idea?

I'm experimenting with a Conversation where I would like to modify the output in a couple of different ways: different output for speech or text different output depending on the tone of the conversation It looks like I can add extra output…
James Taylor
  • 785
  • 5
  • 19
3
votes
1 answer

Can I use the confidence ratings for the intents in creating the flow for the Watson Conversation API flow?

Can I use the confidence ratings for the intents in the conditions for the nodes in the dialog flow in the Watson Conversation API ?
3
votes
2 answers

Is it possible to upload a workspace via rest api in watson conversation service?

I have created ~100 intents on Conversation service on Bluemix by importing them from a csv. That's fine. Now, I need to create dialogs for them. I can do that from the administrative dashboard of the service, but that's a tedious task. I could…