From c197517df80b033afa7380e0927e8d369509cb41 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 4 Sep 2025 14:50:46 -0700 Subject: [PATCH] enable ENABLE_CODE_BLOCK by default and disable it for production/staging (#3363) --- skyvern/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/config.py b/skyvern/config.py index d826bda5..8ab1fdf0 100644 --- a/skyvern/config.py +++ b/skyvern/config.py @@ -304,7 +304,7 @@ class Settings(BaseSettings): SVG_MAX_LENGTH: int = 100000 ENABLE_LOG_ARTIFACTS: bool = False - ENABLE_CODE_BLOCK: bool = False + ENABLE_CODE_BLOCK: bool = True TASK_BLOCKED_SITE_FALLBACK_URL: str = "https://www.google.com"