@@ -127,6 +127,7 @@ def create(
127127 "" ,
128128 ]
129129 | Omit = omit ,
130+ hybrid_search_enabled : bool | Omit = omit ,
130131 max_num_results : int | Omit = omit ,
131132 metadata : instance_create_params .Metadata | Omit = omit ,
132133 public_endpoint_params : instance_create_params .PublicEndpointParams | Omit = omit ,
@@ -201,6 +202,7 @@ def create(
201202 "chunk_overlap" : chunk_overlap ,
202203 "chunk_size" : chunk_size ,
203204 "embedding_model" : embedding_model ,
205+ "hybrid_search_enabled" : hybrid_search_enabled ,
204206 "max_num_results" : max_num_results ,
205207 "metadata" : metadata ,
206208 "public_endpoint_params" : public_endpoint_params ,
@@ -275,6 +277,7 @@ def update(
275277 "" ,
276278 ]
277279 | Omit = omit ,
280+ hybrid_search_enabled : bool | Omit = omit ,
278281 max_num_results : int | Omit = omit ,
279282 metadata : instance_update_params .Metadata | Omit = omit ,
280283 paused : bool | Omit = omit ,
@@ -384,6 +387,7 @@ def update(
384387 "chunk_overlap" : chunk_overlap ,
385388 "chunk_size" : chunk_size ,
386389 "embedding_model" : embedding_model ,
390+ "hybrid_search_enabled" : hybrid_search_enabled ,
387391 "max_num_results" : max_num_results ,
388392 "metadata" : metadata ,
389393 "paused" : paused ,
@@ -670,6 +674,7 @@ async def create(
670674 "" ,
671675 ]
672676 | Omit = omit ,
677+ hybrid_search_enabled : bool | Omit = omit ,
673678 max_num_results : int | Omit = omit ,
674679 metadata : instance_create_params .Metadata | Omit = omit ,
675680 public_endpoint_params : instance_create_params .PublicEndpointParams | Omit = omit ,
@@ -744,6 +749,7 @@ async def create(
744749 "chunk_overlap" : chunk_overlap ,
745750 "chunk_size" : chunk_size ,
746751 "embedding_model" : embedding_model ,
752+ "hybrid_search_enabled" : hybrid_search_enabled ,
747753 "max_num_results" : max_num_results ,
748754 "metadata" : metadata ,
749755 "public_endpoint_params" : public_endpoint_params ,
@@ -818,6 +824,7 @@ async def update(
818824 "" ,
819825 ]
820826 | Omit = omit ,
827+ hybrid_search_enabled : bool | Omit = omit ,
821828 max_num_results : int | Omit = omit ,
822829 metadata : instance_update_params .Metadata | Omit = omit ,
823830 paused : bool | Omit = omit ,
@@ -927,6 +934,7 @@ async def update(
927934 "chunk_overlap" : chunk_overlap ,
928935 "chunk_size" : chunk_size ,
929936 "embedding_model" : embedding_model ,
937+ "hybrid_search_enabled" : hybrid_search_enabled ,
930938 "max_num_results" : max_num_results ,
931939 "metadata" : metadata ,
932940 "paused" : paused ,
0 commit comments