Add workflow_title to WorkflowRun (#1731)

This commit is contained in:
Shuchang Zheng 2025-02-06 03:10:17 +08:00 committed by GitHub
parent cc449dc9de
commit c330c6a455
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 30 additions and 11 deletions

View file

@ -109,6 +109,7 @@ class WorkflowRun(BaseModel):
totp_identifier: str | None = None
failure_reason: str | None = None
parent_workflow_run_id: str | None = None
workflow_title: str | None = None
created_at: datetime
modified_at: datetime
@ -147,3 +148,4 @@ class WorkflowRunStatusResponse(BaseModel):
total_steps: int | None = None
total_cost: float | None = None
observer_task: ObserverTask | None = None
workflow_title: str | None = None