Name | Type | Description | Notes |
---|---|---|---|
results | List[PageContent] | Docs from similarity search |
from iblai.models.retriever_response_search import RetrieverResponseSearch
# TODO update the JSON string below
json = "{}"
# create an instance of RetrieverResponseSearch from a JSON string
retriever_response_search_instance = RetrieverResponseSearch.from_json(json)
# print the JSON string representation of the object
print(RetrieverResponseSearch.to_json())
# convert the object into a dict
retriever_response_search_dict = retriever_response_search_instance.to_dict()
# create an instance of RetrieverResponseSearch from a dict
retriever_response_search_from_dict = RetrieverResponseSearch.from_dict(retriever_response_search_dict)