feat tts stream fallback (#736)

* feat tts stream fallback

* wip

* wip

* wip

* wip

* wip

* wip

* fix review comment
This commit is contained in:
Hoan Luu Huu
2024-05-02 19:43:41 +07:00
committed by GitHub
parent 44e6a3513d
commit 7bcbab5b74
2 changed files with 42 additions and 5 deletions

View File

@@ -515,6 +515,14 @@ class CallSession extends Emitter {
set actionHookDelayActions(e) {
this._actionHookDelayActions = e;
}
// Getter/setter for current tts vendor
get currentTtsVendor() {
return this._currentTtsVendor;
}
set currentTtsVendor(vendor) {
this._currentTtsVendor = vendor;
}
hasGlobalSttPunctuation() {
return this._globalSttPunctuation !== undefined;