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

Intercepting IBM's Watson Botkit middle-ware for testing

My project uses the botkit-middleware-watson to talk to IBM Watson. Now I need to make a mock server for this Watson service. This is just one line of code which calls Watson's API. await watsonMiddleware.sendToWatsonAsync(bot, msg, null); My…
Franva
  • 6,565
  • 23
  • 79
  • 144
0
votes
2 answers

In IBM Assistant how to Import intents through .csv file? I get an error

I am trying to import intents into IBM Assistant via a .csv file. I have followed this official article from IBM cloud but have not been successful in importing the intents. I have linked the excel sheet that I am trying to import I think it is in…
0
votes
1 answer

IBM Watson: Unauthorized

I am doing an app which includes text-to-speech, using Java. I used IBM Watson Text-to-Speech API but I always have Unauthorized Error with my code. Could anyone help me to fix it? Thank you very much! IamOptions options = new IamOptions.Builder() …
0
votes
1 answer

Watson ML CLI Authorization Failed

I am trying to access my Watson ML service using the CLI and getting FAILED Authorization failed with no other information. My environment variables are set according to the service's service credential (url, instance id, username, and password)…
zcleghern
  • 827
  • 7
  • 21
0
votes
1 answer

Variable pattern in the Watson assistant JSON editor

I've created a pattern for a specific variable in my dialogue. Type: Pattern ^[A-Za-z]{1,}$ I'd like the value of that variable to be only one word specifically, no more. I just don't know where to insert it in the JSON editor. { "output": { …
larry walker
  • 123
  • 6
0
votes
2 answers

Text to Speech 37 byte file returned

The wav file returned by the IBM Watson text to speech service is blank. I have tried many command line arguments (including,excluding braces) and most return blank wav files of size 37 bytes. My OS is Windows 10. curl -X POST -u…
0
votes
1 answer

IBM Watson Assistant: Entity overlapping issue in conversation

I am creating a chatbot for students. I am facing a problem in one of my use cases. Students need to get the subjects in a particular year (Bot give the subjects only semester wise). But the problem is I have two entity @year and @semester. My…
0
votes
1 answer

Turn on/off leds - GPIO Raspberry pi 3

Here is an image which shows how I connected the led with the pins: The led is on every time. I am trying to turn off it with this code but it didn't work. Does anyone have an idea why is it still lighted? from gpiozero import LED led =…
Paul Vio
  • 57
  • 1
  • 7
0
votes
3 answers

How can i install custom third party library in IBM Cloud functions action custom package?

I would like to use LanguageTranslatorV3 and ToneAnalyzerV3 python library in IBM Cloud function custom serverless action. I created one sample Action in IBM Cloud function and try to import the above packages, but It gives me module error. So, How…
0
votes
1 answer

How to receive the information passed in SIP refer in Twilio

I have configured the IBM voice agent to transfer the call to an actual physical phone number when the caller asks to be transferred to an agent and it is working fine. Now what I am wondering is if it is possible to transfer the call to a Twilio…
Ankur Patel
  • 1,413
  • 8
  • 14
0
votes
0 answers

Watson API request returns "exception": "#",

When I use postman to bounce the call off of my API it returns the error "exception": "#", I don't understand why I am getting this error at all, so I haven't really tried anything. class NluCallsController < ApplicationController include…
0
votes
1 answer

use the data from cloud object storage to jupyter noteboon in watson studio

I have a cloud object storage in IBM cloud and a bucket inside it. there are .wav files inside the bucket, and I have established a connection to my project in watson studio, I have added the data asset too. but I am not able to insert the data into…
Basudev
  • 135
  • 8
0
votes
1 answer

How to link Google Sheets to IBM Watson Assistant?

I'm trying to build a chatbot with Watson Assistant which can query google sheets spreadsheet and display the result in the chatbot. So I want to know how can that be done? I know it can be done by using Webhooks which can be called using URL…
0
votes
1 answer

IBM Watson Assistant: How do I integrate a Chatbot into Unity?

How do I implement a IBM Watson Chatbot from IBM Cloud into Unity? Main aim is to implement a chatbot in Unity with an avatar and I want to implement IBM Watson Chatbot in Unity. How do I get started?
0
votes
1 answer

Unable to Parse JSON output from IBM Watson Speech To Text

I am following an example on the IBM Watson Python SDK Github found here I changed the following code on line 47 def on_transcription(self, transcript): print(transcript) to def on_transcription(self, transcript): print(transcript) …