88import io .weaviate .client6 .v1 .api .collections .aggregate .WeaviateAggregateClientAsync ;
99import io .weaviate .client6 .v1 .api .collections .config .WeaviateConfigClientAsync ;
1010import io .weaviate .client6 .v1 .api .collections .data .WeaviateDataClientAsync ;
11+ import io .weaviate .client6 .v1 .api .collections .generate .WeaviateGenerateClientAsync ;
1112import io .weaviate .client6 .v1 .api .collections .pagination .AsyncPaginator ;
1213import io .weaviate .client6 .v1 .api .collections .query .ConsistencyLevel ;
1314import io .weaviate .client6 .v1 .api .collections .query .WeaviateQueryClientAsync ;
@@ -21,6 +22,7 @@ public class CollectionHandleAsync<PropertiesT> {
2122 public final WeaviateConfigClientAsync config ;
2223 public final WeaviateDataClientAsync <PropertiesT > data ;
2324 public final WeaviateQueryClientAsync <PropertiesT > query ;
25+ public final WeaviateGenerateClientAsync <PropertiesT > generate ;
2426 public final WeaviateAggregateClientAsync aggregate ;
2527 public final WeaviateTenantsClientAsync tenants ;
2628
@@ -35,6 +37,7 @@ public CollectionHandleAsync(
3537 this .config = new WeaviateConfigClientAsync (collection , restTransport , grpcTransport , defaults );
3638 this .aggregate = new WeaviateAggregateClientAsync (collection , grpcTransport , defaults );
3739 this .query = new WeaviateQueryClientAsync <>(collection , grpcTransport , defaults );
40+ this .generate = new WeaviateGenerateClientAsync <>(collection , grpcTransport , defaults );
3841 this .data = new WeaviateDataClientAsync <>(collection , restTransport , grpcTransport , defaults );
3942 this .defaults = defaults ;
4043
@@ -46,6 +49,7 @@ private CollectionHandleAsync(CollectionHandleAsync<PropertiesT> c, CollectionHa
4649 this .config = new WeaviateConfigClientAsync (c .config , defaults );
4750 this .aggregate = new WeaviateAggregateClientAsync (c .aggregate , defaults );
4851 this .query = new WeaviateQueryClientAsync <>(c .query , defaults );
52+ this .generate = new WeaviateGenerateClientAsync <>(c .generate , defaults );
4953 this .data = new WeaviateDataClientAsync <>(c .data , defaults );
5054 this .defaults = defaults ;
5155
0 commit comments