You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -221,6 +222,21 @@ var myInstance = new watson.WhateverServiceV1({
221
222
});
222
223
```
223
224
225
+
### Configuring the HTTP client
226
+
227
+
The HTTP client can be configured to disable SSL verification. Note that this has serious security implications - only do this if you really mean to! ⚠️
228
+
229
+
To do this, set `disable_ssl` to `true` in the service constructor, like below:
230
+
231
+
```
232
+
const discovery = new DiscoveryV1({
233
+
url: '<service_url>',
234
+
version: '<version-date>',
235
+
iam_apikey: '<iam_api_key>',
236
+
disable_ssl: true, // this will disable SSL verification for any request made with this object
237
+
});
238
+
```
239
+
224
240
## Documentation
225
241
226
242
You can find links to the documentation at https://console.bluemix.net/developer/watson/documentation. Find the service that you're interested in, click **API reference**, and then select the **Node** tab.
@@ -279,7 +295,39 @@ function (err, token) {
279
295
});
280
296
```
281
297
282
-
### Assistant
298
+
### Assistant v2
299
+
300
+
Use the [Assistant][conversation] service to determine the intent of a message.
301
+
302
+
Note: You must first create a workspace via IBM Cloud. See [the documentation](https://console.bluemix.net/docs/services/conversation/index.html#about) for details.
303
+
304
+
```js
305
+
var AssistantV1 =require('watson-developer-cloud/assistant/v1');
Copy file name to clipboardExpand all lines: assistant/v1.ts
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3976,8 +3976,6 @@ namespace AssistantV1 {
3976
3976
nodes_visited?: string[];
3977
3977
/** An array of objects containing detailed diagnostic information about the nodes that were triggered during processing of the input message. Included only if **nodes_visited_details** is set to `true` in the message request. */
0 commit comments