add SKYVERN_APP_URL and a link to the run response (#2316)

This commit is contained in:
Shuchang Zheng
2025-05-10 00:40:54 -07:00
committed by GitHub
parent 0a447ac511
commit 54fba3a550
4 changed files with 11 additions and 0 deletions

View File

@@ -286,6 +286,7 @@ class BaseRunResponse(BaseModel):
failure_reason: str | None = Field(default=None, description="Reason for failure if the run failed")
created_at: datetime = Field(description="Timestamp when this run was created")
modified_at: datetime = Field(description="Timestamp when this run was last modified")
app_url: str | None = Field(default=None, description="URL to the application UI where the run can be viewed")
class TaskRunResponse(BaseRunResponse):