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 bc99163 commit fcfaf6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vocode/streaming/streaming_conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def interrupt_current_filler_audio(self):

async def process(self, item: InterruptableAgentResponseEvent[FillerAudio]):
try:
self.conversation.logger.debug(f"Waiting for {self.name} to start")
self.conversation.logger.debug(f"Waiting for {self.name} to start, config is: {self.config}")
filler_audio = item.payload
assert self.config is not None
filler_synthesis_result = filler_audio.create_synthesis_result()
Expand Down Expand Up @@ -509,7 +509,7 @@ def __init__(
self.back_tracking_config: Optional[BackTrackingConfig] = None
if self.agent.get_agent_config().send_back_tracking_audio:
self.back_tracking_worker = self.BackTrackingWorker(
input_queue=self.back_tracking_audio_queue, conversation=self
input_queue=self.back_tracking_audio_queue, conversation=self,
)
self.events_manager = events_manager or EventsManager()
self.events_task: Optional[asyncio.Task] = None
Expand Down

0 comments on commit fcfaf6f

Please sign in to comment.