|
54 | 54 | from .resources.chats import chats |
55 | 55 | from .resources.extapis import extapis |
56 | 56 | from .resources.datasources import datasources |
57 | | -from .resources.single_turn import single_turn |
58 | 57 |
|
59 | 58 | __all__ = [ |
60 | 59 | "Timeout", |
@@ -89,7 +88,6 @@ class Asktable(SyncAPIClient): |
89 | 88 | scores: scores.ScoresResource |
90 | 89 | files: files.FilesResource |
91 | 90 | dataframes: dataframes.DataframesResource |
92 | | - single_turn: single_turn.SingleTurnResource |
93 | 91 | polish: polish.PolishResource |
94 | 92 | with_raw_response: AsktableWithRawResponse |
95 | 93 | with_streaming_response: AsktableWithStreamedResponse |
@@ -168,7 +166,6 @@ def __init__( |
168 | 166 | self.scores = scores.ScoresResource(self) |
169 | 167 | self.files = files.FilesResource(self) |
170 | 168 | self.dataframes = dataframes.DataframesResource(self) |
171 | | - self.single_turn = single_turn.SingleTurnResource(self) |
172 | 169 | self.polish = polish.PolishResource(self) |
173 | 170 | self.with_raw_response = AsktableWithRawResponse(self) |
174 | 171 | self.with_streaming_response = AsktableWithStreamedResponse(self) |
@@ -299,7 +296,6 @@ class AsyncAsktable(AsyncAPIClient): |
299 | 296 | scores: scores.AsyncScoresResource |
300 | 297 | files: files.AsyncFilesResource |
301 | 298 | dataframes: dataframes.AsyncDataframesResource |
302 | | - single_turn: single_turn.AsyncSingleTurnResource |
303 | 299 | polish: polish.AsyncPolishResource |
304 | 300 | with_raw_response: AsyncAsktableWithRawResponse |
305 | 301 | with_streaming_response: AsyncAsktableWithStreamedResponse |
@@ -378,7 +374,6 @@ def __init__( |
378 | 374 | self.scores = scores.AsyncScoresResource(self) |
379 | 375 | self.files = files.AsyncFilesResource(self) |
380 | 376 | self.dataframes = dataframes.AsyncDataframesResource(self) |
381 | | - self.single_turn = single_turn.AsyncSingleTurnResource(self) |
382 | 377 | self.polish = polish.AsyncPolishResource(self) |
383 | 378 | self.with_raw_response = AsyncAsktableWithRawResponse(self) |
384 | 379 | self.with_streaming_response = AsyncAsktableWithStreamedResponse(self) |
@@ -510,7 +505,6 @@ def __init__(self, client: Asktable) -> None: |
510 | 505 | self.scores = scores.ScoresResourceWithRawResponse(client.scores) |
511 | 506 | self.files = files.FilesResourceWithRawResponse(client.files) |
512 | 507 | self.dataframes = dataframes.DataframesResourceWithRawResponse(client.dataframes) |
513 | | - self.single_turn = single_turn.SingleTurnResourceWithRawResponse(client.single_turn) |
514 | 508 | self.polish = polish.PolishResourceWithRawResponse(client.polish) |
515 | 509 |
|
516 | 510 |
|
@@ -538,7 +532,6 @@ def __init__(self, client: AsyncAsktable) -> None: |
538 | 532 | self.scores = scores.AsyncScoresResourceWithRawResponse(client.scores) |
539 | 533 | self.files = files.AsyncFilesResourceWithRawResponse(client.files) |
540 | 534 | self.dataframes = dataframes.AsyncDataframesResourceWithRawResponse(client.dataframes) |
541 | | - self.single_turn = single_turn.AsyncSingleTurnResourceWithRawResponse(client.single_turn) |
542 | 535 | self.polish = polish.AsyncPolishResourceWithRawResponse(client.polish) |
543 | 536 |
|
544 | 537 |
|
@@ -566,7 +559,6 @@ def __init__(self, client: Asktable) -> None: |
566 | 559 | self.scores = scores.ScoresResourceWithStreamingResponse(client.scores) |
567 | 560 | self.files = files.FilesResourceWithStreamingResponse(client.files) |
568 | 561 | self.dataframes = dataframes.DataframesResourceWithStreamingResponse(client.dataframes) |
569 | | - self.single_turn = single_turn.SingleTurnResourceWithStreamingResponse(client.single_turn) |
570 | 562 | self.polish = polish.PolishResourceWithStreamingResponse(client.polish) |
571 | 563 |
|
572 | 564 |
|
@@ -594,7 +586,6 @@ def __init__(self, client: AsyncAsktable) -> None: |
594 | 586 | self.scores = scores.AsyncScoresResourceWithStreamingResponse(client.scores) |
595 | 587 | self.files = files.AsyncFilesResourceWithStreamingResponse(client.files) |
596 | 588 | self.dataframes = dataframes.AsyncDataframesResourceWithStreamingResponse(client.dataframes) |
597 | | - self.single_turn = single_turn.AsyncSingleTurnResourceWithStreamingResponse(client.single_turn) |
598 | 589 | self.polish = polish.AsyncPolishResourceWithStreamingResponse(client.polish) |
599 | 590 |
|
600 | 591 |
|
|
0 commit comments