@@ -57,7 +57,7 @@ def create(
5757 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
5858 ) -> BrowserCreateResponse :
5959 """
60- Create Browser Session
60+ Create a new browser session from within an action.
6161
6262 Args:
6363 invocation_id: action invocation ID
@@ -99,7 +99,7 @@ def retrieve(
9999 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
100100 ) -> BrowserRetrieveResponse :
101101 """
102- Get Browser Session by ID
102+ Get information about a browser session.
103103
104104 Args:
105105 extra_headers: Send extra headers
@@ -130,7 +130,7 @@ def list(
130130 extra_body : Body | None = None ,
131131 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
132132 ) -> BrowserListResponse :
133- """List active browser sessions for the authenticated user """
133+ """List active browser sessions"""
134134 return self ._get (
135135 "/browsers" ,
136136 options = make_request_options (
@@ -151,7 +151,7 @@ def delete(
151151 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
152152 ) -> None :
153153 """
154- Delete a persistent browser session by persistent_id query parameter .
154+ Delete a persistent browser session by its persistent_id .
155155
156156 Args:
157157 persistent_id: Persistent browser identifier
@@ -189,7 +189,7 @@ def delete_by_id(
189189 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
190190 ) -> None :
191191 """
192- Delete Browser Session by ID
192+ Delete a browser session by ID
193193
194194 Args:
195195 extra_headers: Send extra headers
@@ -245,7 +245,7 @@ async def create(
245245 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
246246 ) -> BrowserCreateResponse :
247247 """
248- Create Browser Session
248+ Create a new browser session from within an action.
249249
250250 Args:
251251 invocation_id: action invocation ID
@@ -287,7 +287,7 @@ async def retrieve(
287287 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
288288 ) -> BrowserRetrieveResponse :
289289 """
290- Get Browser Session by ID
290+ Get information about a browser session.
291291
292292 Args:
293293 extra_headers: Send extra headers
@@ -318,7 +318,7 @@ async def list(
318318 extra_body : Body | None = None ,
319319 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
320320 ) -> BrowserListResponse :
321- """List active browser sessions for the authenticated user """
321+ """List active browser sessions"""
322322 return await self ._get (
323323 "/browsers" ,
324324 options = make_request_options (
@@ -339,7 +339,7 @@ async def delete(
339339 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
340340 ) -> None :
341341 """
342- Delete a persistent browser session by persistent_id query parameter .
342+ Delete a persistent browser session by its persistent_id .
343343
344344 Args:
345345 persistent_id: Persistent browser identifier
@@ -379,7 +379,7 @@ async def delete_by_id(
379379 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
380380 ) -> None :
381381 """
382- Delete Browser Session by ID
382+ Delete a browser session by ID
383383
384384 Args:
385385 extra_headers: Send extra headers
0 commit comments