Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

RetrieverMetadata

Metadata explaining how the retriever works. This is separate from DisplayConfig and provides technical information about the retriever's architecture for developers/debugging.

Properties

Name Type Description Notes
stages List[Dict[str, object]] Pipeline stages used in this retriever [optional]
collections List[Dict[str, object]] Collections and feature extractors used [optional]
capabilities Dict[str, object] Capabilities and features of this retriever [optional]

Example

from mixpeek.models.retriever_metadata import RetrieverMetadata

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

# convert the object into a dict
retriever_metadata_dict = retriever_metadata_instance.to_dict()
# create an instance of RetrieverMetadata from a dict
retriever_metadata_from_dict = RetrieverMetadata.from_dict(retriever_metadata_dict)

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