From 3cdd64dc24fe5743f7abd3ebb5b4ad90d9741afd Mon Sep 17 00:00:00 2001 From: cthomas Date: Thu, 19 Feb 2026 10:19:45 -0800 Subject: [PATCH] chore: update keepalive interval 50->20 (#9538) * chore: update keepalive interval 50->20 * update comment --- letta/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/settings.py b/letta/settings.py index 42459e0f..75bf2d06 100644 --- a/letta/settings.py +++ b/letta/settings.py @@ -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")