1.1 KiB
1.1 KiB
IncludeOptions
Options for including additional data in recall results.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| entities | EntityIncludeOptions | [optional] | |
| chunks | ChunkIncludeOptions | [optional] |
Example
from hindsight_client_api.models.include_options import IncludeOptions
# TODO update the JSON string below
json = "{}"
# create an instance of IncludeOptions from a JSON string
include_options_instance = IncludeOptions.from_json(json)
# print the JSON string representation of the object
print(IncludeOptions.to_json())
# convert the object into a dict
include_options_dict = include_options_instance.to_dict()
# create an instance of IncludeOptions from a dict
include_options_from_dict = IncludeOptions.from_dict(include_options_dict)