chore: change keepalive default interval to 50 (#3693)

This commit is contained in:
cthomas
2025-07-31 17:48:23 -07:00
committed by GitHub
parent abfe742665
commit 1e9bf12820

View File

@@ -206,7 +206,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(90.0, description="Seconds between keepalive messages (default: 90)")
keepalive_interval: float = Field(50.0, description="Seconds between keepalive messages (default: 50)")
# default handles
default_llm_handle: Optional[str] = None