Add run lifecycle timestamps - improvments (#2601)

Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
Prakash Maheshwaran
2025-06-11 23:36:49 -04:00
committed by GitHub
parent 90feb96b0f
commit b5bf9d291f
15 changed files with 138 additions and 1 deletions

View File

@@ -357,6 +357,9 @@ class BaseRunResponse(BaseModel):
modified_at: datetime = Field(
description="Timestamp when this run was last modified", examples=["2025-01-01T00:05:00Z"]
)
queued_at: datetime | None = Field(default=None, description="Timestamp when this run was queued")
started_at: datetime | None = Field(default=None, description="Timestamp when this run started execution")
finished_at: datetime | None = Field(default=None, description="Timestamp when this run finished")
app_url: str | None = Field(
default=None,
description="URL to the application UI where the run can be viewed",