chore: update keepalive interval 50->20 (#9538)

* chore: update keepalive interval 50->20

* update comment
This commit is contained in:
cthomas
2026-02-19 10:19:45 -08:00
committed by Caren Thomas
parent 8f56527958
commit 3cdd64dc24

View File

@@ -275,7 +275,7 @@ class Settings(BaseSettings):
# SSE Streaming keepalive settings
enable_keepalive: bool = Field(True, description="Enable keepalive messages in SSE streams to prevent timeouts")
keepalive_interval: float = Field(50.0, description="Seconds between keepalive messages (default: 50)")
keepalive_interval: float = Field(20.0, description="Seconds between keepalive messages (default: 20)")
# SSE Streaming cancellation settings
enable_cancellation_aware_streaming: bool = Field(True, description="Enable cancellation aware streaming")