From 871c63e07974e6777de523cf76fd84ff359cb35b Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 4 Sep 2025 16:23:08 -0700 Subject: [PATCH] ENABLE_CODE_BLOCK = True by default (#3365) --- 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"