@@ -128,7 +128,6 @@ def __init__(
128128 optimizers_config : Optional [dict ] = None ,
129129 wal_config : Optional [dict ] = None ,
130130 quantization_config : Optional [dict ] = None ,
131- init_from : Optional [dict ] = None ,
132131 wait_result_from_api : bool = True ,
133132 metadata : Optional [dict ] = None ,
134133 write_batch_size : int = 100 ,
@@ -210,8 +209,6 @@ def __init__(
210209 Params for Write-Ahead-Log.
211210 :param quantization_config:
212211 Params for quantization. If `None`, quantization will be disabled.
213- :param init_from:
214- Use data stored in another collection to initialize this collection.
215212 :param wait_result_from_api:
216213 Whether to wait for the result from the API after each request.
217214 :param metadata:
@@ -251,7 +248,6 @@ def __init__(
251248 self .optimizers_config = optimizers_config
252249 self .wal_config = wal_config
253250 self .quantization_config = quantization_config
254- self .init_from = init_from
255251 self .wait_result_from_api = wait_result_from_api
256252 self .recreate_index = recreate_index
257253 self .payload_fields_to_index = payload_fields_to_index
@@ -1644,7 +1640,6 @@ def _prepare_collection_params(self) -> dict[str, Any]:
16441640 "optimizers_config" : self .optimizers_config ,
16451641 "wal_config" : self .wal_config ,
16461642 "quantization_config" : self .quantization_config ,
1647- "init_from" : self .init_from ,
16481643 }
16491644
16501645 def _prepare_client_params (self ) -> dict [str , Any ]:
0 commit comments