add ai_fallback to workflow_runs (#3581)

This commit is contained in:
Shuchang Zheng
2025-10-01 14:13:56 -07:00
committed by GitHub
parent db024d42bb
commit f97b53975f
7 changed files with 62 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ class WorkflowRequestBody(BaseModel):
extra_http_headers: dict[str, str] | None = None
browser_address: str | None = None
run_with: str | None = None
ai_fallback: bool | None = None
@field_validator("webhook_callback_url", "totp_verification_url")
@classmethod
@@ -143,6 +144,7 @@ class WorkflowRun(BaseModel):
script_run: ScriptRunResponse | None = None
job_id: str | None = None
sequential_key: str | None = None
ai_fallback: bool | None = None
queued_at: datetime | None = None
started_at: datetime | None = None