Skip to content

Commit

Permalink
add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
robotaref committed Oct 22, 2023
1 parent b8e814f commit 3c4f270
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vocode/streaming/streaming_conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async def process(self, transcription: Transcription):
self.conversation.logger.debug("sending interrupt")
self.conversation.logger.debug("Human started speaking")
if self.conversation.agent.get_agent_config().send_back_tracking_audio:
self.send_back_tracking_audio(None)
self.send_back_tracking_audio(asyncio.Event())

transcription.is_interrupt = (
self.conversation.current_transcription_is_interrupt
Expand Down
2 changes: 1 addition & 1 deletion vocode/streaming/synthesizer/eleven_labs_synthesizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ async def get_phrase_back_tracking_audios(self) -> List[FillerAudio]:
output_encoding=self.synthesizer_config.audio_encoding,
),
synthesizer_config=self.synthesizer_config,
is_interruptable=True,
is_interruptable=False,
seconds_per_chunk=2,
)
)
Expand Down

0 comments on commit 3c4f270

Please sign in to comment.