UNPKG

@hahnpro/ms-speech-sdk

Version:
1 lines 1.58 kB
{"version":3,"sources":["src/common.speech/ServiceMessages/PhraseDetection/ConversationEnrichmentOptions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD;;GAEG;AACH,oBAAY,2BAA2B;IACnC,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,QAAQ,aAAa;IACrB,QAAQ,aAAa;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;OAEG;IACH,eAAe,CAAC,EAAE,2BAA2B,CAAC;IAE9C;;OAEG;IACH,cAAc,CAAC,EAAE,cAAc,CAAC;IAEhC;;OAEG;IACH,2BAA2B,CAAC,EAAE,2BAA2B,CAAC;IAE1D;;OAEG;IACH,0BAA0B,CAAC,EAAE,cAAc,CAAC;CAC/C","file":"ConversationEnrichmentOptions.d.ts","sourcesContent":["//\n// Copyright (c) Microsoft. All rights reserved.\n// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.\n//\n\nimport { DisfluencyMode } from \"./DisfluencyMode\";\n\n/**\n * The conversation punctuation mode.\n */\nexport enum ConversationPunctuationMode {\n None = \"None\",\n Intelligent = \"Intelligent\",\n Implicit = \"Implicit\",\n Explicit = \"Explicit\"\n}\n\n/**\n * Defines the phrase enrichment options for conversation scenario.\n */\nexport interface ConversationEnrichmentOptions {\n /**\n * The punctuation mode.\n */\n punctuationMode?: ConversationPunctuationMode;\n\n /**\n * The disfluency mode.\n */\n disfluencyMode?: DisfluencyMode;\n\n /**\n * The punctuation mode for intermediate results.\n */\n intermediatePunctuationMode?: ConversationPunctuationMode;\n\n /**\n * The disfluency mode for intermediate results.\n */\n intermediateDisfluencyMode?: DisfluencyMode;\n}\n"]}