@@ -56,8 +56,9 @@ def retrieve(
5656 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
5757 ) -> OrgLimits :
5858 """
59- Get the organization's concurrent session ceiling and the default per-project
60- concurrency cap applied to projects without an explicit override.
59+ Get the organization's concurrency limit — the maximum browsers running at once
60+ across on-demand sessions and browser pool reservations — and the default
61+ per-project concurrency cap applied to projects without an explicit override.
6162 """
6263 return self ._get (
6364 "/org/limits" ,
@@ -81,13 +82,12 @@ def update(
8182 """
8283 Set the default per-project concurrency cap applied to projects without an
8384 explicit override. Set the value to 0 to remove the default; omit to leave it
84- unchanged. The default cannot exceed the organization's concurrent session
85- ceiling.
85+ unchanged. The default cannot exceed the organization's concurrency limit.
8686
8787 Args:
88- default_project_max_concurrent_sessions: Default maximum concurrent browser sessions for projects without an explicit
89- override. Set to 0 to remove the default; omit to leave unchanged. Cannot exceed
90- the organization's concurrent session ceiling .
88+ default_project_max_concurrent_sessions: Default maximum concurrent browsers for projects without an explicit override.
89+ Set to 0 to remove the default; omit to leave unchanged. Cannot exceed the
90+ organization's concurrency limit .
9191
9292 extra_headers: Send extra headers
9393
@@ -143,8 +143,9 @@ async def retrieve(
143143 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
144144 ) -> OrgLimits :
145145 """
146- Get the organization's concurrent session ceiling and the default per-project
147- concurrency cap applied to projects without an explicit override.
146+ Get the organization's concurrency limit — the maximum browsers running at once
147+ across on-demand sessions and browser pool reservations — and the default
148+ per-project concurrency cap applied to projects without an explicit override.
148149 """
149150 return await self ._get (
150151 "/org/limits" ,
@@ -168,13 +169,12 @@ async def update(
168169 """
169170 Set the default per-project concurrency cap applied to projects without an
170171 explicit override. Set the value to 0 to remove the default; omit to leave it
171- unchanged. The default cannot exceed the organization's concurrent session
172- ceiling.
172+ unchanged. The default cannot exceed the organization's concurrency limit.
173173
174174 Args:
175- default_project_max_concurrent_sessions: Default maximum concurrent browser sessions for projects without an explicit
176- override. Set to 0 to remove the default; omit to leave unchanged. Cannot exceed
177- the organization's concurrent session ceiling .
175+ default_project_max_concurrent_sessions: Default maximum concurrent browsers for projects without an explicit override.
176+ Set to 0 to remove the default; omit to leave unchanged. Cannot exceed the
177+ organization's concurrency limit .
178178
179179 extra_headers: Send extra headers
180180
0 commit comments