Bugfix/config stt punctuation (#164)

* support recognizer.punctuation in config verb (#163)

* fixes from testing
This commit is contained in:
Dave Horton
2022-09-13 11:45:36 +02:00
committed by GitHub
parent bf7ece8f17
commit c88163fe11
4 changed files with 21 additions and 0 deletions

View File

@@ -286,6 +286,18 @@ class CallSession extends Emitter {
return this._globalAltLanguages;
}
set globalSttPunctuation(punctuate) {
this._globalSttPunctuation = punctuate;
}
get globalSttPunctuation() {
return this._globalSttPunctuation;
}
hasGlobalSttPunctuation() {
return this._globalSttPunctuation !== undefined;
}
async notifyRecordOptions(opts) {
const {action} = opts;
this.logger.debug({opts}, 'CallSession:notifyRecordOptions');