return pbs id on workflow run endpoint (#2699)

This commit is contained in:
Shuchang Zheng
2025-06-12 13:39:16 -07:00
committed by GitHub
parent d69e15ab65
commit fa0fce4904
4 changed files with 30 additions and 0 deletions

View File

@@ -67,6 +67,11 @@ class WorkflowRunResponse(UniversalBaseModel):
The original request parameters used to start this workflow run
"""
browser_session_id: typing.Optional[str] = pydantic.Field(default=None)
"""
ID of the Skyvern persistent browser session used for this run
"""
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else: