Revert "no longer necessary to call super().process_frame(frame, direction)"
This commit is contained in:
committed by
GitHub
parent
10f854aeba
commit
6d11911d83
@@ -95,6 +95,8 @@ class UserAudioCollector(FrameProcessor):
|
||||
self._user_speaking = False
|
||||
|
||||
async def process_frame(self, frame, direction):
|
||||
await super().process_frame(frame, direction)
|
||||
|
||||
if isinstance(frame, TranscriptionFrame):
|
||||
# We could gracefully handle both audio input and text/transcription input ...
|
||||
# but let's leave that as an exercise to the reader. :-)
|
||||
@@ -133,6 +135,8 @@ class InputTranscriptionContextFilter(FrameProcessor):
|
||||
"""
|
||||
|
||||
async def process_frame(self, frame, direction):
|
||||
await super().process_frame(frame, direction)
|
||||
|
||||
if isinstance(frame, SystemFrame):
|
||||
# We don't want to block system frames.
|
||||
await self.push_frame(frame, direction)
|
||||
@@ -206,6 +210,8 @@ class InputTranscriptionFrameEmitter(FrameProcessor):
|
||||
self._aggregation = ""
|
||||
|
||||
async def process_frame(self, frame, direction):
|
||||
await super().process_frame(frame, direction)
|
||||
|
||||
if isinstance(frame, TextFrame):
|
||||
self._aggregation += frame.text
|
||||
elif isinstance(frame, LLMFullResponseEndFrame):
|
||||
@@ -256,6 +262,8 @@ class TranscriptionContextFixup(FrameProcessor):
|
||||
audio_part.text = self._transcript
|
||||
|
||||
async def process_frame(self, frame, direction):
|
||||
await super().process_frame(frame, direction)
|
||||
|
||||
if isinstance(frame, LLMDemoTranscriptionFrame):
|
||||
logger.info(f"Transcription from Gemini: {frame.text}")
|
||||
self._transcript = frame.text
|
||||
|
||||
Reference in New Issue
Block a user