From addaf66c5478e44cbf839b12627b4853206803fc Mon Sep 17 00:00:00 2001
From: nalbam <me@nalbam.com>
Date: Mon, 10 Jun 2024 15:50:31 +0900
Subject: [PATCH] max slack msg length 3000

---
 handler.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/handler.py b/handler.py
index 74f3a22..cd3817f 100644
--- a/handler.py
+++ b/handler.py
@@ -36,7 +36,7 @@
 # Set up System messages
 SYSTEM_MESSAGE = os.environ.get("SYSTEM_MESSAGE", "None")
 
-MAX_LEN_SLACK = int(os.environ.get("MAX_LEN_SLACK", 2000))
+MAX_LEN_SLACK = int(os.environ.get("MAX_LEN_SLACK", 3000))
 MAX_LEN_BEDROCK = int(os.environ.get("MAX_LEN_BEDROCK", 4000))
 
 KEYWARD_IMAGE = "그려줘"