phase6-Prefect

This commit is contained in:
ldy
2026-06-18 00:32:26 -04:00
parent 91cf930a5f
commit 11f10affbd
5 changed files with 192 additions and 18 deletions

View File

@@ -57,6 +57,11 @@ class Settings(BaseSettings):
enable_browser_agent: bool = True
browser_headless: bool = True
# -- Scheduling (Prefect flow) -----------------------------------------
schedule_interval_seconds: int = 86400 # default: daily
flow_retries: int = 1
flow_retry_delay_seconds: int = 60
@lru_cache
def get_settings() -> Settings: