Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

RetrieverSchema

Schema definition for retriever inputs.

Properties

Name Type Description Notes
properties Dict[str, RetrieverInputSchemaFieldInput] Schema properties for retriever inputs [optional]

Example

from mixpeek.models.retriever_schema import RetrieverSchema

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

# convert the object into a dict
retriever_schema_dict = retriever_schema_instance.to_dict()
# create an instance of RetrieverSchema from a dict
retriever_schema_from_dict = RetrieverSchema.from_dict(retriever_schema_dict)

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