Skip to content

Commit

Permalink
Poll time for idle changed to half of idle time threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
vocode-petern committed Aug 26, 2024
1 parent d857d7e commit 0ac3dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vocode/streaming/streaming_conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ async def check_for_idle(self):
)
check_human_present_count += 1
# wait till the idle time would have passed the threshold if no action occurs
await asyncio.sleep(ALLOWED_IDLE_TIME)
await asyncio.sleep(self.idle_time_threshold / 2)

async def send_single_message(
self,
Expand Down

0 comments on commit 0ac3dd6

Please sign in to comment.