ibm-watson

unable to extra/list all event log on watson assistant wrokspace

旧巷老猫 提交于 2019-12-24 18:20:19
问题 Please help I was trying to call watson assistant endpoint https://gateway.watsonplatform.net/assistant/api/v1/workspaces/myworkspace/logs?version=2018-09-20 to get all the list of events and filter by date range using this params var param = { workspace_id: '{myworkspace}', page_limit: 100000, filter: 'response_timestamp%3C2018-17-12,response_timestamp%3E2019-01-01'} apparently I got any empty response below. { "logs": [], "pagination": {} } 回答1: Couple of things to check. 1. You have 2018

Connection drop with IBM Watson Server

左心房为你撑大大i 提交于 2019-12-24 14:02:32
问题 I have been using IBM watson speech to text over websockets and since recently there are connection drops in the middle of process or handshake issues. This is the error log and it can't process audio files after 1-2 minutes of handshake: _connectionLost: [Failure instance: Traceback (failure with no frames): : Connection was closed cleanly. ('WebSocket connection closed: connection was closed uncleanly (peer dropped the TCP connection without previous WebSocket closing handshake)', 'code: ',

How does beast async_read() work & is there an option for it?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 10:55:16
问题 I am not very familiar with the boost::asio fundamentals. I am working on a task where I have connected to a web server and reading the response. The response is thrown at a random period, i.e. as and when the response is generated. For this I am using the boost::beast library which is wrapped over the boost::asio fundamentals. I have found that the async_read() function is waiting until it is receiving a response. Now, the thing is : in documentations & example the asynchronous way of

Why does pip install fail for the Python Watson Developer Cloud

假如想象 提交于 2019-12-24 09:09:37
问题 Here is the error I'm seeing. Is there something wrong in my install? Any help would be appreciated. Installing collected packages: six, ipaddress, asn1crypto, enum34, pycparser, cffi, cryptography, pyOpenSSL, watson-developer-cloud Found existing installation: six 1.4.1 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the

Twilio IBM Watson Speech To Text Addon Callback function not getting triggered

99封情书 提交于 2019-12-24 08:26:38
问题 My objective is to get transcribe (Caller's input - IVR Conversation) using IBM Watson Speech to Text Addon which is available on Twilio platform (Twilio Add-ons feature). IBM watson speech to text add-on is installed. Problem: Callback function which defined on Callback URL is not getting triggered. I have followed the guidelines mentioned on this link I have configured my Programmable voice application as web hook function. (Using NGROK) and Callback function is also configured as a web

How to connect to particular endpoint on “wss” [IBM Watson]

て烟熏妆下的殇ゞ 提交于 2019-12-24 08:06:38
问题 I am using the boost library to connect to IBM web-server (speech to text). And I am stuck at web-socket handshaking stage. of the code. I have referred to the Web-socket async SSL client example. Here is the code (similar as the above example with a few debug cout in between) : Aim is to connect to wss://stream.watsonplatform.net/speech-to-text/api/v1/recognize?apikey={my apikey} // Report a failure void fail(beast::error_code ec, char const* what) { std::cerr << what << ": " << ec.message()

IBM Watson - Sys-number does not get 0

跟風遠走 提交于 2019-12-24 07:37:17
问题 in this case, I want to use sys-number to get numbers sequence, and this number can start with 0. But, if the user types 034234342342 , the sys-number does not recognize the 0 , just 34234342342 . Have any Contorn Solution for this? In this case, to get all number? This is one Regex condition inside Conversation flow and I want to use sys-number to get the ALL number if the user types "My protocol number is 034234342342". And sys-number will be the new condition and get the complete number.

IBM Watson Assistant: How to set a 'jump to' target node dynamically (i.e. using context variables)

青春壹個敷衍的年華 提交于 2019-12-24 07:16:16
问题 I want to jump from a dialog node to a node the ID of which is stored in a context variable. I'm trying to solve a problem that has to do with a digression and which has been described here: Conditionally return from digression in watson assistant Especially this chart visualizes the problem: In my opinion, A.H. posed a very reasonable and relevant question that has got no viable answer. As far as I can see the problem can not be solved by digression settings. Either the root level node

How use Select Option in Watson Conversation

回眸只為那壹抹淺笑 提交于 2019-12-24 07:08:03
问题 I'm trying to insert the select options tag into my conversation, to make it more simple to the user. I did this: And in the index.js: function selected(){ switch($('#selected option:selected').val()){ case 01: alert("01"); break; case 02: alert("02"); break; } }; But it doesn't recognize the option selected. I tried without the function selected() (only with switch case), but it didn't worked.. Can somebody help me please? Thanks a lot! 回答1: I believe your HTML inside the Advanced context

Request two or more intentions inside Watson Conversation

泄露秘密 提交于 2019-12-24 02:55:08
问题 I have 5 intents in my conversation. If user types for request 2 or more intents, how do I know that he has typed two intentions and how do I inform him that he can only request one intention at a time? My example have 2 intents, and Watson dont reconigze the second intent: I want pizza and I want cuisine Intents #pizza : I want pizza Intents # cuisine : I want cuisine Thanks. 回答1: The Watson Conversation Service evaluates all your intents when it process the input text. However, by default