Fix end_of_turn_confidence_threshold: set to 1.0 (not 0.0) for universal-streaming

- u3-rt-pro: Does not set parameter (not used)
- universal-streaming models: Set to 1.0 to maintain fast response
- This ensures fast response time matches previous implementation
This commit is contained in:
zack
2026-03-02 18:25:25 -05:00
parent 32773b42d6
commit c6c2c5ba05

View File

@@ -267,7 +267,7 @@ class AssemblyAISTTService(WebsocketSTTService):
else:
# universal-streaming: Different configuration (works differently)
updates = {
"end_of_turn_confidence_threshold": 0.0,
"end_of_turn_confidence_threshold": 1.0,
"min_turn_silence": 160,
}