Remove successful action history. Only show the failure of the previous step in action history. (#602)

This commit is contained in:
Kerem Yilmaz
2024-07-12 08:57:50 -07:00
committed by GitHub
parent b52be1a597
commit cdd731b862
2 changed files with 5 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ class Settings(BaseSettings):
MAX_RETRIES_PER_STEP: int = 5
DEBUG_MODE: bool = False
DATABASE_STRING: str = "postgresql+psycopg://skyvern@localhost/skyvern"
PROMPT_ACTION_HISTORY_WINDOW: int = 5
PROMPT_ACTION_HISTORY_WINDOW: int = 1
TASK_RESPONSE_ACTION_SCREENSHOT_COUNT: int = 3
ENV: str = "local"