Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.57 KB

File metadata and controls

32 lines (23 loc) · 1.57 KB

BaseFeatureExtractorModelInput

Minimum feature extractor definition.

Properties

Name Type Description Notes
feature_extractor_name str Name of the feature extractor
version str Version of the feature extractor (e.g., 'v1', 'v2')
params Dict[str, object] Optional extractor parameters that affect vector index configuration. Parameters set here are locked at namespace creation and determine vector dimensions in Qdrant. Collections using this extractor must use compatible params. Example: {'model': 'siglip_base'} [optional]

Example

from mixpeek.models.base_feature_extractor_model_input import BaseFeatureExtractorModelInput

# TODO update the JSON string below
json = "{}"
# create an instance of BaseFeatureExtractorModelInput from a JSON string
base_feature_extractor_model_input_instance = BaseFeatureExtractorModelInput.from_json(json)
# print the JSON string representation of the object
print(BaseFeatureExtractorModelInput.to_json())

# convert the object into a dict
base_feature_extractor_model_input_dict = base_feature_extractor_model_input_instance.to_dict()
# create an instance of BaseFeatureExtractorModelInput from a dict
base_feature_extractor_model_input_from_dict = BaseFeatureExtractorModelInput.from_dict(base_feature_extractor_model_input_dict)

[Back to Model list] [Back to API list] [Back to README]