microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
26 lines (25 loc) • 568 B
TypeScript
/**
* Defines the intent context payload in the speech.context message
*/
export interface Intent {
/**
* The intent provider (LUIS or CLU)
*/
provider?: string;
/**
* The intent provider identifier. For CLU this is the projectName.
*/
id?: string;
/**
* The Endpoint for LUIS or CLU (optional).
*/
endpoint?: string;
/**
* The Deployment name for CLU (optional).
*/
deploymentName?: string;
/**
* The language resource key for CLU (optional).
*/
languageResource?: string;
}