Questions tagged [watson-assistant]

IBM 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.

To discuss questions with other developer, join the Slack workspace through this inviter: http://wdc-slack-inviter.mybluemix.net/

Important links:
* Documentation: https://cloud.ibm.com/docs/services/assistant
* Development SDKs on GitHub: https://github.com/watson-developer-cloud/

521 questions
26
votes
5 answers

NPM ELIFECYCLE error - using node server.js command

I am deploying test-bot on ibm watson as described here https://github.com/eciggaar/text-bot and when I am trying to deploy code locally using CLI foundry it is getting the following errors. I am using Nodejs version 6.10.3 and npm version 5.0.4…
Prerna Chugh
  • 261
  • 1
  • 3
  • 6
7
votes
2 answers

What is the difference between Watson Assistant (formerly Watson Conversation) and Watson Assistant Solutions

I'm only familiar with Watson Assistant because I've done some work with it but I've never used Watson Assistant Solutions. Is it a new API or an app on top of Watson Assistant? When should I use one or the other?
4
votes
3 answers

IBM Watson APIs Java SDK use Watson token authentication fail

I use Watson APIs Java SDK and my Authentication was use function setUsernameAndPassword(username, password), but now I want to use Tokens for authentication. my "Username and Password" Code mAssistant = new…
4
votes
2 answers

How do I add an action to watson conversation response?

I've created intent, entity and dialog without a problem. But right now I'm trying to make it so when the user send "goodbye", the application would close. According to the doc, I'll have to name an action that goes along with an intent. How do I do…
3
votes
4 answers

IBM Watson Assistant - exclude a specific entity value so as not to match it ever

This could be a simple one that I haven't been able to find but I'm trying to exclude a single value ("girlfriend") from being picked up as an entity in a chatbot I'm building. The entity list is currently "dog, cat, pet, mum, horse" with relevant…
Trav
  • 31
  • 2
3
votes
3 answers

Watson assistant putting the day of the week in a variable based on user input of @sys-date

I'm making a bot that can take dinner reservations. When it asks for the users reservation time, I'd like the bot to populate my variable $dayoftheweek with the day of the week based on the date the user inputs. How would I be able to do that? here…
larry walker
  • 123
  • 6
3
votes
1 answer

Is there a way to access entity value metadata in Watson Assistant using the JSON editor or SPEL

I'm attempting to define some relationships between entity values, using metadata. I've uploaded metadata to an entity value using the Watson API v1. When I list the entities through the same API I can see the metadata. I have not been able to…
Joe M.
  • 33
  • 4
3
votes
1 answer

IBM Cloud Watson Assistant: How to get the ID of a workspace

I made a chatbot using IBM Cloud Watson Assistant and I need to use it in my Android applications. This my config.xml code :
Mostafa
  • 71
  • 1
  • 9
3
votes
2 answers

Error in jumps in IBM Watson

We are implementing Watson technology for an assistant to help certain users. The dialogues are somewhat complex, and sometimes it is necessary to do jump answers that relate with certain questions, the downside of this is that it may be that the…
3
votes
3 answers

How to capture the multiple values of one entity in IBM watson assistant after asking slot?

In my Watson Assistant app, I want to capture the multiple entities in the context and also have a slot to ask a question to user. Here is an example: User: I want to fly from Toronto to Boston And the Watson correctly detects: intent: 'booking',…
Hannan
  • 1,171
  • 6
  • 20
  • 39
3
votes
3 answers

How to remove a context variable in Watson Assistant service on IBM Cloud

I am using this, but this only sets it to empty, { "context": { "time": "", "place": "", "things": "", "transport": "" }, "output": {} } I also tried "time": "null" and "time": "$time.remove"
SamuelNLP
  • 4,038
  • 9
  • 59
  • 102
3
votes
1 answer

Watson Conversation node.js create workspace with learning_opt_out

I'm trying to create a new watson-conversation workspace with learning_opt_out true in node.js. The following code creates the workspace, but learning_opt_out is still false. Can you help? var watson = require("watson-developer-cloud"); var…
Leo
  • 101
  • 12
2
votes
2 answers

Limiting Watson Assistant user response to ONLY Numbers - No text allowed

Hi I'm training my Watson Assistant (Classic) to ask the question, "How much is your vehicle worth?" If assistant recognizes @sys_number, their response saved in a variable $vehicleworth as " < ? input.text ? > ". This was fine until a user…
2
votes
1 answer

Change the Watson Assistant confirm modal language (Exit Button Confirmation)

I have a Watson Assistant integrated on a web-page using the following block: const customLanguagePack = { "options_select": "Wählen Sie eine Option aus", }; window.watsonAssistantChatOptions = { …
L.Gashi
  • 183
  • 1
  • 11
2
votes
0 answers

IBM Watson Assistant: Access issues when using ngrok for webhook URL

Good morning everyone. I am developing an application that uses the watson assistant webhook by sending some parameters to a server, which analyzes the parameters and based on these sends a response to the application and to watson itself. Well, it…
1
2 3
34 35