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/
Questions tagged [watson-conversation]
790 questions
-1
votes
2 answers
How to print the answer returned by IBM Watson Assistant?
I have a Python Flask app that tries to use IBM Watson Assistant. Below is a code snippet that invokes the message API function. How do I print the returned answer?
import json, _watson, requests, jsonify
import watson_developer_cloud
from flask…

Jlcastr
- 3
- 1
-1
votes
1 answer
Is it possible to output google search results in IBM Watson Chatbot?
I have created a chatbot with IBM Watson Assistant. But currently I have hardcoded all values in the dialog
e.g : When some user will ask "Who created Computer ?" then in the dialog flow I have written "XYZ created computer".
But suppose the user…

Anonymous
- 35
- 7
-1
votes
1 answer
Watson Assistant slot regular expression for a name or text without numbers
I want to capture the first name and second name using slots in Watson Assistant by prompting.
https://console.bluemix.net/docs/services/conversation/entities.html#creating-entities
gives regular expressions for phone, email, and website.
What is…

Siju George
- 209
- 1
- 2
- 6
-1
votes
1 answer
Watson Assistant CURL API: How to handle the Responds with OPTIONS?
I'm trying out IBM Watson Assistant. Ultimate goal is to integrate it with my custom PHP backend, via it's Watson Assistant's cURL API Endpoints (because there's no complete PHP SDK yet).
When I setup a Dialog with the OPTIONS (other than, TEXT) as…

夏期劇場
- 17,821
- 44
- 135
- 217
-1
votes
1 answer
convert a given curl request into ajax request
I have a curl request :
curl -X POST -u "uname":"pwd" --header "Content-Type:application/json" --data "{\"input\": {\"text\": \"Hello there\"}}"…

ANKIT KUMAR
- 71
- 8
-1
votes
1 answer
how can i add html output (Ex : a YES and NO button) to the output of an intent in watson
I have already created a dialog flow and the same works well in android.However i am looking to integrate the below:-
1.Adding HTML response from Intents
2.How to write the click events for those HTML objects in android
3.ability to call 3rd party…

Joy Shankar Nandi
- 11
- 2
-1
votes
2 answers
how to integrate watson conversation with Speech-to-text and text-to-speech APIs
This is my first experience of using IBM watson and I am stuck with integrating watson conversation with speech-to-text and text-to-speech api services using node.js platform.
Done with conversation part but can't find a method to make
input…

Sabah
- 534
- 1
- 5
- 13
-1
votes
1 answer
How can I grab the context variable mid conversation and use it in my swift program?
So I'm writing a chatbot application which requires the intake of parameters and then uses these parameters in post requests sent via a payload.
I'm having problems with grabbing the context value from a context variable within swift and was…

Aman Gohel
- 1
- 1
-1
votes
1 answer
Returning function value
I have a function updateMessage, that performs a check up on the values of payload, calls a weather API through the function checkWeather() and appends the result of that API to the finalResponse variable.
However, I keep getting undefined when I…

Alejandro
- 623
- 1
- 9
- 22
-1
votes
1 answer
How to save Watson Conversation history in my mySQL database?
I just deployed the Watson Conversation plugin on Wordpress and its working very well - I can talk to Watson and he works just as he does in Bluemix.
However, I have no way to then see or manage the conversation history (aside from going into…
-1
votes
1 answer
Extract the address portion of a callers response
In a conversation turn the caller is asked for the address of their destination. A few response examples:
I'm heading to 123 Lombard Street.
I'll be at 2210 third Ave.
I should be arriving to 44 Cross Terrace about 3:00 this afternoon.
Is it…

Michael Mirt
- 361
- 1
- 3
- 14
-1
votes
1 answer
IBM Watson Conversation: How to dynamically create context variables?
In IBM Watson Conversation, context variables can be used to carry information. A value can be derived from the evaluation of expressions as shown:
"context": {
"mycity": " entities['city'].value ?>"
}
What I tried is to dynamically compose…

data_henrik
- 16,724
- 2
- 28
- 49
-1
votes
5 answers
What is that intelligence we have in Watson Conversation service
I've been working on watson conversation for sometime.Mainly conversation service responds for inputs given by the user depending on the way we train and it does that based on the intents,entities and dialog flow we define.
Internally it would look…

user7350714
- 365
- 1
- 6
- 20
-1
votes
1 answer
Watson conversation with spring mvc
For core java conversation service example working fine,
For spring mvc it's shows error like,
"Exception in thread "main" java.lang.NoSuchMethodError:…

madhu
- 113
- 1
- 6
-1
votes
1 answer
Can someone help me with watson dialog
At Conversation starts box when creatin a dialog, I use a condition trigger and a response for watson to display. I also edit the anything else box reply in case watson dont understand the user intent. When testing the dialog. The dialog display the…