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
this allows for configuring what external credentials are read
other changes:
* (NLU) optional property `model` removed from `CategoriesOptions` interface
* (TTS) new constants added to `Voice` enum
@@ -46,17 +44,25 @@ class AssistantV2 extends BaseService {
46
44
* application is ready for a later version.
47
45
* @param {string} [options.serviceUrl] - The base url to use when contacting the service (e.g. 'https://gateway.watsonplatform.net/assistant/api'). The base url may differ between IBM Cloud regions.
48
46
* @param {OutgoingHttpHeaders} [options.headers] - Default headers that shall be included with every request to the service.
47
+
* @param {string} [options.serviceName] - The name of the service to configure
49
48
* @param {Authenticator} [options.authenticator] - The Authenticator object used to authenticate requests to the service. Defaults to environment if not set
@@ -302,9 +305,6 @@ class AssistantV2 extends BaseService {
302
305
303
306
}
304
307
305
-
AssistantV2.prototype.name='conversation';
306
-
AssistantV2.prototype.serviceVersion='v2';
307
-
308
308
/*************************
309
309
* interfaces
310
310
************************/
@@ -501,6 +501,8 @@ namespace AssistantV2 {
501
501
exportinterfaceMessageContextSkill{
502
502
/** Arbitrary variables that can be read and written by a particular skill. */
503
503
user_defined?: JsonObject;
504
+
/** For internal use only. */
505
+
system?: JsonObject;
504
506
}
505
507
506
508
/** Information specific to particular skills used by the Assistant. **Note:** Currently, only a single property named `main skill` is supported. This object contains variables that apply to the dialog skill used by the assistant. */
0 commit comments