DialogflowInstance
This class represents an instance of the Dialogflow instance. Add the following line to your scenario code to use the class:
require(Modules.AI);
Constructors
constructor
Parameters
id:
string
params:
any
Methods
addEventListener
addEventListener(event: , callback: Function
): void
Adds a handler for the specified AI.Events. Use only functions as handlers; anything except a function leads to the error and scenario termination when a handler is called
Parameters
event:
Event class (i.e., AI.Events.DialogflowResponse)
callback:
Function
Handler function. A single parameter is passed - object with event information
Returns
type:
void
addMarker
addMarker(offset: number
): void
Add Dialogflow speech synthesis playback marker. The AI.Events.DialogflowPlaybackMarkerReached event is triggered when the marker is reached.
Parameters
offset:
number
Positive/negative offset (ms) from the start/end of media.
Returns
type:
void
removeEventListener
removeEventListener(event: , callback: Function
): void
Removes a handler for the specified AI.Events event
Parameters
event:
Event class (i.e., AI.Events.DialogflowResponse)
callback:
Function
OptionalHandler function. If not specified, all event listeners are removed
Returns
type:
void
sendMediaTo
sendMediaTo(targetMediaUnit: , optional: ): void
Start sending voice from a Dialogflow participant to the media unit specified in targetCall.
Parameters
targetMediaUnit:
optional:
Optional
Returns
type:
void
sendQuery
sendQuery(dialogflowQuery: ): void
Send a query to the DialogFlow instance. You can send either text string up to 256 characters or the event object with the event name and the additional data.
Parameters
dialogflowQuery:
Text string (up to 256 characters) or the event object.
Returns
type:
void
setOutputAudioConfig
setOutputAudioConfig(outputAudioConfig: ): void
Update audio output parameter
Parameters
outputAudioConfig:
Returns
type:
void
setPhraseHints
setPhraseHints(phraseHints: {[id: string]: string}
): void
Set the collection of phrase hints for the intents.
Parameters
phraseHints:
{[id: string]: string}
The collection of phrase hints which are used to boost accuracy of speech recognition.
Returns
type:
void
setQueryParameters
setQueryParameters(queryParameters: ): void
Set the parameters for the intents.
Parameters
queryParameters:
Returns
type:
void
stop
stop(): void
Stop and destroy current Dialogflow instance
Returns
type:
void
stopMediaTo
stopMediaTo(targetMediaUnit: ): void
Stop sending voice from a Dialogflow participant to the media unit specified in targetCall.
Parameters
targetMediaUnit:
Returns
type:
void