Correct docstrings and comments regarding incomplete_long_timeout duration, 10 sec
This commit is contained in:
committed by
Aleix Conchillo Flaqué
parent
b78cecf7b2
commit
457a68ce64
@@ -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.
|
||||
|
||||
@@ -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,
|
||||
),
|
||||
)
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user