This commit is contained in:
Magzhan Zhumabayev
2026-05-02 01:43:04 +05:00
parent 0c1b746e08
commit 00d9b241f0
2 changed files with 9 additions and 3 deletions
+5 -1
View File
@@ -1840,7 +1840,11 @@ class CallSession:
) -> None:
first_audio_seen = False
started_monotonic = time.perf_counter()
cached_greeting = self._filler_audio.pick("initial_greeting") if self._filler_audio is not None else None
cached_greeting = (
self._filler_audio.pick("initial_greeting", allow_fallback=False)
if self._filler_audio is not None
else None
)
if cached_greeting:
await self._play_cached_initial_greeting(
epoch=epoch,