1.1 KiB
1.1 KiB
RecallResponse
Response model for recall endpoints.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[RecallResult] | ||
| trace | Dict[str, object] | [optional] | |
| entities | Dict[str, EntityStateResponse] | [optional] | |
| chunks | Dict[str, ChunkData] | [optional] |
Example
from hindsight_client_api.models.recall_response import RecallResponse
# TODO update the JSON string below
json = "{}"
# create an instance of RecallResponse from a JSON string
recall_response_instance = RecallResponse.from_json(json)
# print the JSON string representation of the object
print(RecallResponse.to_json())
# convert the object into a dict
recall_response_dict = recall_response_instance.to_dict()
# create an instance of RecallResponse from a dict
recall_response_from_dict = RecallResponse.from_dict(recall_response_dict)