Minimum feature extractor definition.
| 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] |
| feature_extractor_id | str | Construct unique identifier for the feature extractor instance (name + version). | [readonly] |
from mixpeek.models.base_feature_extractor_model_output import BaseFeatureExtractorModelOutput
# TODO update the JSON string below
json = "{}"
# create an instance of BaseFeatureExtractorModelOutput from a JSON string
base_feature_extractor_model_output_instance = BaseFeatureExtractorModelOutput.from_json(json)
# print the JSON string representation of the object
print(BaseFeatureExtractorModelOutput.to_json())
# convert the object into a dict
base_feature_extractor_model_output_dict = base_feature_extractor_model_output_instance.to_dict()
# create an instance of BaseFeatureExtractorModelOutput from a dict
base_feature_extractor_model_output_from_dict = BaseFeatureExtractorModelOutput.from_dict(base_feature_extractor_model_output_dict)