3030 SyncAPIClient ,
3131 AsyncAPIClient ,
3232)
33+ from .resources .client import client
3334
3435__all__ = [
3536 "Timeout" ,
@@ -49,6 +50,7 @@ class NotDiamond(SyncAPIClient):
4950 prompt_adaptation : prompt_adaptation .PromptAdaptationResource
5051 report : report .ReportResource
5152 models : models .ModelsResource
53+ client : client .ClientResource
5254 with_raw_response : NotDiamondWithRawResponse
5355 with_streaming_response : NotDiamondWithStreamedResponse
5456
@@ -107,6 +109,7 @@ def __init__(
107109 self .prompt_adaptation = prompt_adaptation .PromptAdaptationResource (self )
108110 self .report = report .ReportResource (self )
109111 self .models = models .ModelsResource (self )
112+ self .client = client .ClientResource (self )
110113 self .with_raw_response = NotDiamondWithRawResponse (self )
111114 self .with_streaming_response = NotDiamondWithStreamedResponse (self )
112115
@@ -234,6 +237,7 @@ class AsyncNotDiamond(AsyncAPIClient):
234237 prompt_adaptation : prompt_adaptation .AsyncPromptAdaptationResource
235238 report : report .AsyncReportResource
236239 models : models .AsyncModelsResource
240+ client : client .AsyncClientResource
237241 with_raw_response : AsyncNotDiamondWithRawResponse
238242 with_streaming_response : AsyncNotDiamondWithStreamedResponse
239243
@@ -292,6 +296,7 @@ def __init__(
292296 self .prompt_adaptation = prompt_adaptation .AsyncPromptAdaptationResource (self )
293297 self .report = report .AsyncReportResource (self )
294298 self .models = models .AsyncModelsResource (self )
299+ self .client = client .AsyncClientResource (self )
295300 self .with_raw_response = AsyncNotDiamondWithRawResponse (self )
296301 self .with_streaming_response = AsyncNotDiamondWithStreamedResponse (self )
297302
@@ -420,6 +425,7 @@ def __init__(self, client: NotDiamond) -> None:
420425 self .prompt_adaptation = prompt_adaptation .PromptAdaptationResourceWithRawResponse (client .prompt_adaptation )
421426 self .report = report .ReportResourceWithRawResponse (client .report )
422427 self .models = models .ModelsResourceWithRawResponse (client .models )
428+ self .client = client .ClientResourceWithRawResponse (client .client )
423429
424430
425431class AsyncNotDiamondWithRawResponse :
@@ -431,6 +437,7 @@ def __init__(self, client: AsyncNotDiamond) -> None:
431437 )
432438 self .report = report .AsyncReportResourceWithRawResponse (client .report )
433439 self .models = models .AsyncModelsResourceWithRawResponse (client .models )
440+ self .client = client .AsyncClientResourceWithRawResponse (client .client )
434441
435442
436443class NotDiamondWithStreamedResponse :
@@ -442,6 +449,7 @@ def __init__(self, client: NotDiamond) -> None:
442449 )
443450 self .report = report .ReportResourceWithStreamingResponse (client .report )
444451 self .models = models .ModelsResourceWithStreamingResponse (client .models )
452+ self .client = client .ClientResourceWithStreamingResponse (client .client )
445453
446454
447455class AsyncNotDiamondWithStreamedResponse :
@@ -453,6 +461,7 @@ def __init__(self, client: AsyncNotDiamond) -> None:
453461 )
454462 self .report = report .AsyncReportResourceWithStreamingResponse (client .report )
455463 self .models = models .AsyncModelsResourceWithStreamingResponse (client .models )
464+ self .client = client .AsyncClientResourceWithStreamingResponse (client .client )
456465
457466
458467Client = NotDiamond
0 commit comments