add cache_key to workflows table (#3112)

This commit is contained in:
Shuchang Zheng 2025-08-06 08:32:14 -07:00 committed by GitHub
parent 800c030e5c
commit 31aa7d6973
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 46 additions and 11 deletions

View file

@ -80,6 +80,8 @@ class Workflow(BaseModel):
status: WorkflowStatus = WorkflowStatus.published
max_screenshot_scrolls: int | None = None
extra_http_headers: dict[str, str] | None = None
use_cache: bool = False
cache_key: str | None = None
created_at: datetime
modified_at: datetime