Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

PipelineEmbeddingList

Properties

Name Type Description Notes
results List[PipelineEmbedding] [optional]
metadata Metadata [optional]

Example

from neurostore_sdk.models.pipeline_embedding_list import PipelineEmbeddingList

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

# convert the object into a dict
pipeline_embedding_list_dict = pipeline_embedding_list_instance.to_dict()
# create an instance of PipelineEmbeddingList from a dict
pipeline_embedding_list_from_dict = PipelineEmbeddingList.from_dict(pipeline_embedding_list_dict)

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