25
25
get_async_library ,
26
26
)
27
27
from ._version import __version__
28
- from .resources import health
28
+ from .resources import tlm , health
29
29
from ._streaming import Stream as Stream , AsyncStream as AsyncStream
30
30
from ._exceptions import APIStatusError
31
31
from ._base_client import (
@@ -61,6 +61,7 @@ class Codex(SyncAPIClient):
61
61
organizations : organizations .OrganizationsResource
62
62
users : users .UsersResource
63
63
projects : projects .ProjectsResource
64
+ tlm : tlm .TlmResource
64
65
with_raw_response : CodexWithRawResponse
65
66
with_streaming_response : CodexWithStreamedResponse
66
67
@@ -141,6 +142,7 @@ def __init__(
141
142
self .organizations = organizations .OrganizationsResource (self )
142
143
self .users = users .UsersResource (self )
143
144
self .projects = projects .ProjectsResource (self )
145
+ self .tlm = tlm .TlmResource (self )
144
146
self .with_raw_response = CodexWithRawResponse (self )
145
147
self .with_streaming_response = CodexWithStreamedResponse (self )
146
148
@@ -291,6 +293,7 @@ class AsyncCodex(AsyncAPIClient):
291
293
organizations : organizations .AsyncOrganizationsResource
292
294
users : users .AsyncUsersResource
293
295
projects : projects .AsyncProjectsResource
296
+ tlm : tlm .AsyncTlmResource
294
297
with_raw_response : AsyncCodexWithRawResponse
295
298
with_streaming_response : AsyncCodexWithStreamedResponse
296
299
@@ -371,6 +374,7 @@ def __init__(
371
374
self .organizations = organizations .AsyncOrganizationsResource (self )
372
375
self .users = users .AsyncUsersResource (self )
373
376
self .projects = projects .AsyncProjectsResource (self )
377
+ self .tlm = tlm .AsyncTlmResource (self )
374
378
self .with_raw_response = AsyncCodexWithRawResponse (self )
375
379
self .with_streaming_response = AsyncCodexWithStreamedResponse (self )
376
380
@@ -522,6 +526,7 @@ def __init__(self, client: Codex) -> None:
522
526
self .organizations = organizations .OrganizationsResourceWithRawResponse (client .organizations )
523
527
self .users = users .UsersResourceWithRawResponse (client .users )
524
528
self .projects = projects .ProjectsResourceWithRawResponse (client .projects )
529
+ self .tlm = tlm .TlmResourceWithRawResponse (client .tlm )
525
530
526
531
527
532
class AsyncCodexWithRawResponse :
@@ -530,6 +535,7 @@ def __init__(self, client: AsyncCodex) -> None:
530
535
self .organizations = organizations .AsyncOrganizationsResourceWithRawResponse (client .organizations )
531
536
self .users = users .AsyncUsersResourceWithRawResponse (client .users )
532
537
self .projects = projects .AsyncProjectsResourceWithRawResponse (client .projects )
538
+ self .tlm = tlm .AsyncTlmResourceWithRawResponse (client .tlm )
533
539
534
540
535
541
class CodexWithStreamedResponse :
@@ -538,6 +544,7 @@ def __init__(self, client: Codex) -> None:
538
544
self .organizations = organizations .OrganizationsResourceWithStreamingResponse (client .organizations )
539
545
self .users = users .UsersResourceWithStreamingResponse (client .users )
540
546
self .projects = projects .ProjectsResourceWithStreamingResponse (client .projects )
547
+ self .tlm = tlm .TlmResourceWithStreamingResponse (client .tlm )
541
548
542
549
543
550
class AsyncCodexWithStreamedResponse :
@@ -546,6 +553,7 @@ def __init__(self, client: AsyncCodex) -> None:
546
553
self .organizations = organizations .AsyncOrganizationsResourceWithStreamingResponse (client .organizations )
547
554
self .users = users .AsyncUsersResourceWithStreamingResponse (client .users )
548
555
self .projects = projects .AsyncProjectsResourceWithStreamingResponse (client .projects )
556
+ self .tlm = tlm .AsyncTlmResourceWithStreamingResponse (client .tlm )
549
557
550
558
551
559
Client = Codex
0 commit comments