Correct docstrings and comments regarding incomplete_long_timeout duration, 10 sec

This commit is contained in:
Mark Backman
2026-05-07 09:14:53 -04:00
committed by Aleix Conchillo Flaqué
parent b78cecf7b2
commit 457a68ce64
3 changed files with 6 additions and 6 deletions

View File

@@ -187,8 +187,8 @@ class UserTurnCompletionLLMServiceMixin(FrameProcessor):
It processes turn completion markers to enable smarter conversation flow:
- ✓ (COMPLETE): Push response normally
- ○ (INCOMPLETE SHORT): Suppress response, wait ~5s, then prompt
- ◐ (INCOMPLETE LONG): Suppress response, wait ~15s, then prompt
- ○ (INCOMPLETE SHORT): Suppress response, wait 5s, then prompt
- ◐ (INCOMPLETE LONG): Suppress response, wait 10s, then prompt
When incomplete timeouts expire, the mixin automatically prompts the LLM
with a contextual follow-up message to re-engage the user.

View File

@@ -138,7 +138,7 @@ class FilterIncompleteUserTurnStrategies(UserTurnStrategies):
user_turn_strategies=FilterIncompleteUserTurnStrategies(
config=UserTurnCompletionConfig(
incomplete_short_timeout=5.0,
incomplete_long_timeout=15.0,
incomplete_long_timeout=10.0,
),
)
"""