add fern doc for login sdk (#3014)

This commit is contained in:
Shuchang Zheng
2025-07-22 05:55:39 -07:00
committed by GitHub
parent 0045bf4a79
commit 7c5a799478
3 changed files with 20 additions and 7 deletions

View File

@@ -24,8 +24,8 @@ from skyvern.webeye.schemas import BrowserSessionResponse
"x-fern-sdk-method-name": "create_browser_session",
"x-fern-examples": [{"code-samples": [{"sdk": "python", "code": CREATE_BROWSER_SESSION_CODE_SAMPLE}]}],
},
description="Create a new browser session",
summary="Create a new browser session",
description="Create a browser session that persists across multiple runs",
summary="Create a session",
responses={
200: {"description": "Successfully created browser session"},
403: {"description": "Unauthorized - Invalid or missing authentication"},
@@ -54,8 +54,8 @@ async def create_browser_session(
"x-fern-sdk-method-name": "close_browser_session",
"x-fern-examples": [{"code-samples": [{"sdk": "python", "code": CLOSE_BROWSER_SESSION_CODE_SAMPLE}]}],
},
description="Close a browser session",
summary="Close a browser session",
description="Close a session. Once closed, the session cannot be used again.",
summary="Close a session",
responses={
200: {"description": "Successfully closed browser session"},
403: {"description": "Unauthorized - Invalid or missing authentication"},
@@ -89,8 +89,8 @@ async def close_browser_session(
"x-fern-sdk-method-name": "get_browser_session",
"x-fern-examples": [{"code-samples": [{"sdk": "python", "code": GET_BROWSER_SESSION_CODE_SAMPLE}]}],
},
description="Get details about a specific browser session by ID",
summary="Get browser session details",
description="Get details about a specific browser session, including the browser address for cdp connection.",
summary="Get a session",
responses={
200: {"description": "Successfully retrieved browser session details"},
404: {"description": "Browser session not found"},
@@ -127,7 +127,7 @@ async def get_browser_session(
"x-fern-examples": [{"code-samples": [{"sdk": "python", "code": GET_BROWSER_SESSIONS_CODE_SAMPLE}]}],
},
description="Get all active browser sessions for the organization",
summary="Get all active browser sessions",
summary="Get active browser sessions",
responses={
200: {"description": "Successfully retrieved all active browser sessions"},
403: {"description": "Unauthorized - Invalid or missing authentication"},