From 41e8d8b0ac371f1b8aa4fd206f5326df45c1fa92 Mon Sep 17 00:00:00 2001 From: Suchintan Date: Sat, 1 Feb 2025 13:55:14 -0500 Subject: [PATCH] Update Max steps per run to 10 (#1686) --- fern/docs.yml | 4 ++-- skyvern/config.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 8301c1a193..76d3e6d61e 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -8,8 +8,8 @@ logo: height: 28 colors: accentPrimary: - dark: '#0D9373' - light: '#07C983' + dark: '#14D4A7' + light: '#038B5A' background: dark: '#000000' light: '#FFFFFF' diff --git a/skyvern/config.py b/skyvern/config.py index 89c89164fb..0d564eb77f 100644 --- a/skyvern/config.py +++ b/skyvern/config.py @@ -19,7 +19,7 @@ class Settings(BaseSettings): BROWSER_SCREENSHOT_TIMEOUT_MS: int = 20000 BROWSER_LOADING_TIMEOUT_MS: int = 120000 OPTION_LOADING_TIMEOUT_MS: int = 600000 - MAX_STEPS_PER_RUN: int = 75 + MAX_STEPS_PER_RUN: int = 10 MAX_NUM_SCREENSHOTS: int = 10 # Ratio should be between 0 and 1. # If the task has been running for more steps than this ratio of the max steps per run, then we'll log a warning.