Reputation: 966
Pretty simple one here, I'm looking for documentation for the various clients offered by the Dialogflow v2 nodejs library.
Following their implementations on Github I see various uses of
"new dialogflow.ContextsClient();
" (and other clients) but can't seem to find documentation for what I can do with that ContextsClient
.
Upvotes: 1
Views: 1057
Reputation: 3479
You can check out the RPC reference here and the samples in the Github repo
Here is an example of how you can create a context with the ContextsClient: https://github.com/dialogflow/dialogflow-nodejs-client-v2/blob/master/samples/resource.js#L902
Upvotes: 3