mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 16:50:39 +00:00
fix config verb can override recognizer *Options (#558)
* fix config verb can override recognizer *Options * wip * clean up gather and transcribe * fix failing testcase * fix failing testcase * fix failing testcase
This commit is contained in:
@@ -170,6 +170,18 @@ class CallSession extends Emitter {
|
||||
return this.application.notifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* syntheizer
|
||||
*/
|
||||
|
||||
get synthesizer() {
|
||||
return this._synthesizer;
|
||||
}
|
||||
|
||||
set synthesizer(synth) {
|
||||
this._synthesizer = synth;
|
||||
}
|
||||
|
||||
/**
|
||||
* default vendor to use for speech synthesis if not provided in the app
|
||||
*/
|
||||
@@ -252,6 +264,16 @@ class CallSession extends Emitter {
|
||||
set fallbackSpeechRecognizerVendor(vendor) {
|
||||
this.application.fallback_speech_recognizer_vendor = vendor;
|
||||
}
|
||||
/**
|
||||
* recognizer
|
||||
*/
|
||||
get recognizer() {
|
||||
return this._recognizer;
|
||||
}
|
||||
|
||||
set recognizer(rec) {
|
||||
this._recognizer = rec;
|
||||
}
|
||||
/**
|
||||
* default vendor to use for speech recognition if not provided in the app
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user