3636 async_to_raw_response_wrapper ,
3737 async_to_streamed_response_wrapper ,
3838)
39- from .resources import chat , files , api_keys , embeddings
39+ from .resources import files , api_keys , embeddings
4040from ._streaming import Stream as Stream , AsyncStream as AsyncStream
4141from ._exceptions import APIStatusError , MixedbreadError
4242from ._base_client import (
@@ -78,7 +78,6 @@ class Mixedbread(SyncAPIClient):
7878 files : files .FilesResource
7979 extractions : extractions .ExtractionsResource
8080 embeddings : embeddings .EmbeddingsResource
81- chat : chat .ChatResource
8281 data_sources : data_sources .DataSourcesResource
8382 api_keys : api_keys .APIKeysResource
8483 with_raw_response : MixedbreadWithRawResponse
@@ -167,7 +166,6 @@ def __init__(
167166 self .files = files .FilesResource (self )
168167 self .extractions = extractions .ExtractionsResource (self )
169168 self .embeddings = embeddings .EmbeddingsResource (self )
170- self .chat = chat .ChatResource (self )
171169 self .data_sources = data_sources .DataSourcesResource (self )
172170 self .api_keys = api_keys .APIKeysResource (self )
173171 self .with_raw_response = MixedbreadWithRawResponse (self )
@@ -441,7 +439,6 @@ class AsyncMixedbread(AsyncAPIClient):
441439 files : files .AsyncFilesResource
442440 extractions : extractions .AsyncExtractionsResource
443441 embeddings : embeddings .AsyncEmbeddingsResource
444- chat : chat .AsyncChatResource
445442 data_sources : data_sources .AsyncDataSourcesResource
446443 api_keys : api_keys .AsyncAPIKeysResource
447444 with_raw_response : AsyncMixedbreadWithRawResponse
@@ -530,7 +527,6 @@ def __init__(
530527 self .files = files .AsyncFilesResource (self )
531528 self .extractions = extractions .AsyncExtractionsResource (self )
532529 self .embeddings = embeddings .AsyncEmbeddingsResource (self )
533- self .chat = chat .AsyncChatResource (self )
534530 self .data_sources = data_sources .AsyncDataSourcesResource (self )
535531 self .api_keys = api_keys .AsyncAPIKeysResource (self )
536532 self .with_raw_response = AsyncMixedbreadWithRawResponse (self )
@@ -805,7 +801,6 @@ def __init__(self, client: Mixedbread) -> None:
805801 self .files = files .FilesResourceWithRawResponse (client .files )
806802 self .extractions = extractions .ExtractionsResourceWithRawResponse (client .extractions )
807803 self .embeddings = embeddings .EmbeddingsResourceWithRawResponse (client .embeddings )
808- self .chat = chat .ChatResourceWithRawResponse (client .chat )
809804 self .data_sources = data_sources .DataSourcesResourceWithRawResponse (client .data_sources )
810805 self .api_keys = api_keys .APIKeysResourceWithRawResponse (client .api_keys )
811806
@@ -827,7 +822,6 @@ def __init__(self, client: AsyncMixedbread) -> None:
827822 self .files = files .AsyncFilesResourceWithRawResponse (client .files )
828823 self .extractions = extractions .AsyncExtractionsResourceWithRawResponse (client .extractions )
829824 self .embeddings = embeddings .AsyncEmbeddingsResourceWithRawResponse (client .embeddings )
830- self .chat = chat .AsyncChatResourceWithRawResponse (client .chat )
831825 self .data_sources = data_sources .AsyncDataSourcesResourceWithRawResponse (client .data_sources )
832826 self .api_keys = api_keys .AsyncAPIKeysResourceWithRawResponse (client .api_keys )
833827
@@ -849,7 +843,6 @@ def __init__(self, client: Mixedbread) -> None:
849843 self .files = files .FilesResourceWithStreamingResponse (client .files )
850844 self .extractions = extractions .ExtractionsResourceWithStreamingResponse (client .extractions )
851845 self .embeddings = embeddings .EmbeddingsResourceWithStreamingResponse (client .embeddings )
852- self .chat = chat .ChatResourceWithStreamingResponse (client .chat )
853846 self .data_sources = data_sources .DataSourcesResourceWithStreamingResponse (client .data_sources )
854847 self .api_keys = api_keys .APIKeysResourceWithStreamingResponse (client .api_keys )
855848
@@ -871,7 +864,6 @@ def __init__(self, client: AsyncMixedbread) -> None:
871864 self .files = files .AsyncFilesResourceWithStreamingResponse (client .files )
872865 self .extractions = extractions .AsyncExtractionsResourceWithStreamingResponse (client .extractions )
873866 self .embeddings = embeddings .AsyncEmbeddingsResourceWithStreamingResponse (client .embeddings )
874- self .chat = chat .AsyncChatResourceWithStreamingResponse (client .chat )
875867 self .data_sources = data_sources .AsyncDataSourcesResourceWithStreamingResponse (client .data_sources )
876868 self .api_keys = api_keys .AsyncAPIKeysResourceWithStreamingResponse (client .api_keys )
877869
0 commit comments