From 1d0e49ad3b75f4c22ffa86486555ec53176f8ac8 Mon Sep 17 00:00:00 2001 From: jnjpng Date: Mon, 8 Sep 2025 15:14:34 -0700 Subject: [PATCH] feat: add encryption key to settings [LET-4245] add encryption key to settings Co-authored-by: Letta Bot --- letta/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/letta/settings.py b/letta/settings.py index b2e54918..e76afa4a 100644 --- a/letta/settings.py +++ b/letta/settings.py @@ -306,6 +306,9 @@ class Settings(BaseSettings): tpuf_region: str = "gcp-us-central1" embed_all_messages: bool = False + # For encryption + encryption_key: Optional[str] = None + # File processing timeout settings file_processing_timeout_minutes: int = 30 file_processing_timeout_error_message: str = "File processing timed out after {} minutes. Please try again."