Questions tagged [ibm-watson]

A collection of REST APIs and SDKs that can be used to integrate AI into your applications to solve complex problems.

A collection of REST APIs and SDKs that use cognitive computing to solve complex problems.

Watson APIs are adaptable, interactive and contextual in the way they provide information.

Instead of simply returning prepared responses, these APIs provide answers based on what they know to be correct, relying on information they've acquired over time.

See: http://www.ibm.com/watson/developer/

2412 questions
0
votes
1 answer

How to specify region when creating a Watson service using the ibmcloud command line

I'd like to create speech-to-text service in specify "Tokyo region" by ibmcloud command. I knew, I can create speech-to-text service in specify "Tokyo region" by ibmcloud portal. could you tell me please how to create service specify region.
SSaka
  • 47
  • 6
0
votes
1 answer

How to extract image's numbers using IBMCloud Visual Recognition Text?

I'm following this tutorial: https://cloud.ibm.com/docs/services/visual-recognition?topic=visual-recognition-tutorial-recognize-text&locale=en-US#pr-ximos-passos My goal is read a document and made a table of content. The content is of type KEY -…
Augusto
  • 3,825
  • 9
  • 45
  • 93
0
votes
0 answers

How do I pass a value into nodeJS from another client-side javascript document?

I'm currently new to node.js, and I am making a chat-bot based application. However, the IBM Natural Language Understanding API does not have documentation for regular javascript code, and instead requires the utilization of the nodeJS server. I had…
aestheticnoodle
  • 151
  • 4
  • 12
0
votes
1 answer

Unable to call watson language translator using proxy

when I called watson language translator service over a public network its responded with no error. meanwhile, its not able to get response body over my private network I am using the NGINX has my load balancer and have configure a proxy_http for it…
0
votes
0 answers

Can't read a csv file using Jupyter Notebook

I am trying to use the IBM Watson Studio Jupyter Notebook to open a csv file but I just can't do it So typing the normal pandas command will give me the FileNotFoundError This command import pandas as…
0
votes
1 answer

"Expected a JSON header message before receiving binary data" error using WebSocket-Sharp and IBM Watson TTS

I'm trying to use IBM Watson's WebSocket interface so I can obtain the word timings of the audio. Here is a link to the documentation. The authentication part seems to be working fine. But I keep getting the error "Expected a JSON header message…
0
votes
1 answer

Getting list of options in my chatbot from IBM Watson Assistant

image of ibm watson and options (2nd image) How can I get list of options in my chatbot from IBM Watson Assistant? I am using IBM Watson AI platform. The chatbot code is below and a screenshot of options is given above. How can I get those options…
0
votes
1 answer

How to customize IBM Watson Assistant result from Search skill query

We have created an IBM Watson Assistant service as PLUS plan and integrated IBM Watson Discovery with it using the Search skill option. We are able to get the response from Discovery through Assistant but the results we got have many passages and we…
user2319726
  • 143
  • 1
  • 1
  • 10
0
votes
1 answer

Installing spacy within Watson Machine Learning deployed function fails without error message

I'm trying to use a spaCy model within an IBM Cloud deployed function and the installation of spacy fails without a specific error. How to reproduce: def dummy_deployable_function(): try: import subprocess …
freecraver
  • 11
  • 2
0
votes
1 answer

IBM watson assistant always give Unauthorized error when try to use it

I have been stuck for two days in a very strange issue in Watson Assistant I have made some code to be able to use it in my app, it keeps giving me 401 authentications error these are the three services that I have configured in my IBM cloud…
Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175
0
votes
1 answer

Get the document data based on Title/document name

We have uploaded pdf file into Discovery service and using smart documentation we have marked the data as title and text/table..etc and spitted the pdf file into multiple pdf files based on title. Now we want to get the data based on title/pdf…
user2319726
  • 143
  • 1
  • 1
  • 10
0
votes
1 answer

how do I publish a watson assistant bot?

I've created a bot using Watson assistant, but the bot responds completely differently in their dashboard vs via the API. is there some 'publish' step? MSLuis has something like that for managing the deploy process but I can't find anything here.…
dcsan
  • 11,333
  • 15
  • 77
  • 118
0
votes
2 answers

How to create a new watson assistant session on exisiting session expiration in Flask?

I am using watson assistant with flask framework. Once the session expires i get the following error ApiException(response.status_code, error_message, http_response=response) ibm_cloud_sdk_core.api_exception.ApiException: Error: NotFound: session…
Quantum Dreamer
  • 432
  • 1
  • 6
  • 17
0
votes
1 answer

Is there any android sdk documentation for ibm watson

I'm trying to write a chatbot in Android using the ibm watson. I installed the SDK, but I can't really find any proper documentation for the associated methods and functions. All I could find were tutorials regarding Conversation which belongs to…
appledora
  • 81
  • 1
  • 9
0
votes
0 answers

How to read slots from watson assistant in python

I created a slot that prompts the user to enter a gender in watson assistant I have provided the values , now I want to call the same slot in my python flask code . I am able to call individual dialogues from python but for multiple slots I am not…