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
Copy file name to clipboardExpand all lines: README.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Node.js client library to use the Watson APIs.
19
19
*[Examples](#examples)
20
20
*[IBM Watson Services](#ibm-watson-services)
21
21
*[Authorization](#authorization)
22
+
*[Assistant] (#assistant)
22
23
*[Conversation](#conversation)
23
24
*[Discovery](#discovery)
24
25
*[Language Translator](#language-translator)
@@ -137,6 +138,37 @@ function (err, token) {
137
138
});
138
139
```
139
140
141
+
### Assistant
142
+
143
+
Use the [Assistant][assistant] service to determine the intent of a message.
144
+
145
+
Note: you must first create a workspace via Bluemix. See [the documentation](https://console.bluemix.net/docs/services/assistant/index.html#about) for details.
146
+
147
+
```js
148
+
var AssistantV1 =require('watson-developer-cloud/assistant/v1');
0 commit comments