5252
5353
5454class AgentResource (SyncAPIResource ):
55+ """Operations for running and managing cloud agents"""
56+
5557 @cached_property
5658 def runs (self ) -> RunsResource :
59+ """Operations for running and managing cloud agents"""
5760 return RunsResource (self ._client )
5861
5962 @cached_property
6063 def schedules (self ) -> SchedulesResource :
64+ """Operations for creating and managing scheduled agents"""
6165 return SchedulesResource (self ._client )
6266
6367 @cached_property
6468 def sessions (self ) -> SessionsResource :
69+ """Operations for running and managing cloud agents"""
6570 return SessionsResource (self ._client )
6671
6772 @cached_property
@@ -251,16 +256,21 @@ def run(
251256
252257
253258class AsyncAgentResource (AsyncAPIResource ):
259+ """Operations for running and managing cloud agents"""
260+
254261 @cached_property
255262 def runs (self ) -> AsyncRunsResource :
263+ """Operations for running and managing cloud agents"""
256264 return AsyncRunsResource (self ._client )
257265
258266 @cached_property
259267 def schedules (self ) -> AsyncSchedulesResource :
268+ """Operations for creating and managing scheduled agents"""
260269 return AsyncSchedulesResource (self ._client )
261270
262271 @cached_property
263272 def sessions (self ) -> AsyncSessionsResource :
273+ """Operations for running and managing cloud agents"""
264274 return AsyncSessionsResource (self ._client )
265275
266276 @cached_property
@@ -465,14 +475,17 @@ def __init__(self, agent: AgentResource) -> None:
465475
466476 @cached_property
467477 def runs (self ) -> RunsResourceWithRawResponse :
478+ """Operations for running and managing cloud agents"""
468479 return RunsResourceWithRawResponse (self ._agent .runs )
469480
470481 @cached_property
471482 def schedules (self ) -> SchedulesResourceWithRawResponse :
483+ """Operations for creating and managing scheduled agents"""
472484 return SchedulesResourceWithRawResponse (self ._agent .schedules )
473485
474486 @cached_property
475487 def sessions (self ) -> SessionsResourceWithRawResponse :
488+ """Operations for running and managing cloud agents"""
476489 return SessionsResourceWithRawResponse (self ._agent .sessions )
477490
478491
@@ -492,14 +505,17 @@ def __init__(self, agent: AsyncAgentResource) -> None:
492505
493506 @cached_property
494507 def runs (self ) -> AsyncRunsResourceWithRawResponse :
508+ """Operations for running and managing cloud agents"""
495509 return AsyncRunsResourceWithRawResponse (self ._agent .runs )
496510
497511 @cached_property
498512 def schedules (self ) -> AsyncSchedulesResourceWithRawResponse :
513+ """Operations for creating and managing scheduled agents"""
499514 return AsyncSchedulesResourceWithRawResponse (self ._agent .schedules )
500515
501516 @cached_property
502517 def sessions (self ) -> AsyncSessionsResourceWithRawResponse :
518+ """Operations for running and managing cloud agents"""
503519 return AsyncSessionsResourceWithRawResponse (self ._agent .sessions )
504520
505521
@@ -519,14 +535,17 @@ def __init__(self, agent: AgentResource) -> None:
519535
520536 @cached_property
521537 def runs (self ) -> RunsResourceWithStreamingResponse :
538+ """Operations for running and managing cloud agents"""
522539 return RunsResourceWithStreamingResponse (self ._agent .runs )
523540
524541 @cached_property
525542 def schedules (self ) -> SchedulesResourceWithStreamingResponse :
543+ """Operations for creating and managing scheduled agents"""
526544 return SchedulesResourceWithStreamingResponse (self ._agent .schedules )
527545
528546 @cached_property
529547 def sessions (self ) -> SessionsResourceWithStreamingResponse :
548+ """Operations for running and managing cloud agents"""
530549 return SessionsResourceWithStreamingResponse (self ._agent .sessions )
531550
532551
@@ -546,12 +565,15 @@ def __init__(self, agent: AsyncAgentResource) -> None:
546565
547566 @cached_property
548567 def runs (self ) -> AsyncRunsResourceWithStreamingResponse :
568+ """Operations for running and managing cloud agents"""
549569 return AsyncRunsResourceWithStreamingResponse (self ._agent .runs )
550570
551571 @cached_property
552572 def schedules (self ) -> AsyncSchedulesResourceWithStreamingResponse :
573+ """Operations for creating and managing scheduled agents"""
553574 return AsyncSchedulesResourceWithStreamingResponse (self ._agent .schedules )
554575
555576 @cached_property
556577 def sessions (self ) -> AsyncSessionsResourceWithStreamingResponse :
578+ """Operations for running and managing cloud agents"""
557579 return AsyncSessionsResourceWithStreamingResponse (self ._agent .sessions )
0 commit comments