Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions livekit-agents/livekit/agents/voice/agent_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def __init__(
min_interruption_duration: float = 0.5,
min_interruption_words: int = 0,
min_endpointing_delay: float = 0.5,
max_endpointing_delay: float = 6.0,
max_endpointing_delay: float = 3.0,
max_tool_steps: int = 3,
video_sampler: NotGivenOr[_VideoSampler | None] = NOT_GIVEN,
user_away_timeout: float | None = 15.0,
Expand Down Expand Up @@ -218,7 +218,7 @@ def __init__(
or an EOU model) before it declares the user’s turn complete.
Default ``0.5`` s.
max_endpointing_delay (float): Maximum time-in-seconds the agent
will wait before terminating the turn. Default ``6.0`` s.
will wait before terminating the turn. Default ``3.0`` s.
max_tool_steps (int): Maximum consecutive tool calls per LLM turn.
Default ``3``.
video_sampler (_VideoSampler, optional): Uses
Expand Down