|
34 | 34 | scoring, |
35 | 35 | shields, |
36 | 36 | datasets, |
37 | | - datasetio, |
38 | 37 | inference, |
39 | 38 | providers, |
40 | 39 | telemetry, |
@@ -90,7 +89,6 @@ class LlamaStackClient(SyncAPIClient): |
90 | 89 | shields: shields.ShieldsResource |
91 | 90 | synthetic_data_generation: synthetic_data_generation.SyntheticDataGenerationResource |
92 | 91 | telemetry: telemetry.TelemetryResource |
93 | | - datasetio: datasetio.DatasetioResource |
94 | 92 | scoring: scoring.ScoringResource |
95 | 93 | scoring_functions: scoring_functions.ScoringFunctionsResource |
96 | 94 | benchmarks: benchmarks.BenchmarksResource |
@@ -172,7 +170,6 @@ def __init__( |
172 | 170 | self.shields = shields.ShieldsResource(self) |
173 | 171 | self.synthetic_data_generation = synthetic_data_generation.SyntheticDataGenerationResource(self) |
174 | 172 | self.telemetry = telemetry.TelemetryResource(self) |
175 | | - self.datasetio = datasetio.DatasetioResource(self) |
176 | 173 | self.scoring = scoring.ScoringResource(self) |
177 | 174 | self.scoring_functions = scoring_functions.ScoringFunctionsResource(self) |
178 | 175 | self.benchmarks = benchmarks.BenchmarksResource(self) |
@@ -306,7 +303,6 @@ class AsyncLlamaStackClient(AsyncAPIClient): |
306 | 303 | shields: shields.AsyncShieldsResource |
307 | 304 | synthetic_data_generation: synthetic_data_generation.AsyncSyntheticDataGenerationResource |
308 | 305 | telemetry: telemetry.AsyncTelemetryResource |
309 | | - datasetio: datasetio.AsyncDatasetioResource |
310 | 306 | scoring: scoring.AsyncScoringResource |
311 | 307 | scoring_functions: scoring_functions.AsyncScoringFunctionsResource |
312 | 308 | benchmarks: benchmarks.AsyncBenchmarksResource |
@@ -388,7 +384,6 @@ def __init__( |
388 | 384 | self.shields = shields.AsyncShieldsResource(self) |
389 | 385 | self.synthetic_data_generation = synthetic_data_generation.AsyncSyntheticDataGenerationResource(self) |
390 | 386 | self.telemetry = telemetry.AsyncTelemetryResource(self) |
391 | | - self.datasetio = datasetio.AsyncDatasetioResource(self) |
392 | 387 | self.scoring = scoring.AsyncScoringResource(self) |
393 | 388 | self.scoring_functions = scoring_functions.AsyncScoringFunctionsResource(self) |
394 | 389 | self.benchmarks = benchmarks.AsyncBenchmarksResource(self) |
@@ -525,7 +520,6 @@ def __init__(self, client: LlamaStackClient) -> None: |
525 | 520 | client.synthetic_data_generation |
526 | 521 | ) |
527 | 522 | self.telemetry = telemetry.TelemetryResourceWithRawResponse(client.telemetry) |
528 | | - self.datasetio = datasetio.DatasetioResourceWithRawResponse(client.datasetio) |
529 | 523 | self.scoring = scoring.ScoringResourceWithRawResponse(client.scoring) |
530 | 524 | self.scoring_functions = scoring_functions.ScoringFunctionsResourceWithRawResponse(client.scoring_functions) |
531 | 525 | self.benchmarks = benchmarks.BenchmarksResourceWithRawResponse(client.benchmarks) |
@@ -554,7 +548,6 @@ def __init__(self, client: AsyncLlamaStackClient) -> None: |
554 | 548 | client.synthetic_data_generation |
555 | 549 | ) |
556 | 550 | self.telemetry = telemetry.AsyncTelemetryResourceWithRawResponse(client.telemetry) |
557 | | - self.datasetio = datasetio.AsyncDatasetioResourceWithRawResponse(client.datasetio) |
558 | 551 | self.scoring = scoring.AsyncScoringResourceWithRawResponse(client.scoring) |
559 | 552 | self.scoring_functions = scoring_functions.AsyncScoringFunctionsResourceWithRawResponse( |
560 | 553 | client.scoring_functions |
@@ -585,7 +578,6 @@ def __init__(self, client: LlamaStackClient) -> None: |
585 | 578 | client.synthetic_data_generation |
586 | 579 | ) |
587 | 580 | self.telemetry = telemetry.TelemetryResourceWithStreamingResponse(client.telemetry) |
588 | | - self.datasetio = datasetio.DatasetioResourceWithStreamingResponse(client.datasetio) |
589 | 581 | self.scoring = scoring.ScoringResourceWithStreamingResponse(client.scoring) |
590 | 582 | self.scoring_functions = scoring_functions.ScoringFunctionsResourceWithStreamingResponse( |
591 | 583 | client.scoring_functions |
@@ -618,7 +610,6 @@ def __init__(self, client: AsyncLlamaStackClient) -> None: |
618 | 610 | ) |
619 | 611 | ) |
620 | 612 | self.telemetry = telemetry.AsyncTelemetryResourceWithStreamingResponse(client.telemetry) |
621 | | - self.datasetio = datasetio.AsyncDatasetioResourceWithStreamingResponse(client.datasetio) |
622 | 613 | self.scoring = scoring.AsyncScoringResourceWithStreamingResponse(client.scoring) |
623 | 614 | self.scoring_functions = scoring_functions.AsyncScoringFunctionsResourceWithStreamingResponse( |
624 | 615 | client.scoring_functions |
|
0 commit comments