fleet-memory/hindsight-clients/python/hindsight_client_api/docs/ChunkIncludeOptions.md
2025-12-01 18:44:49 +01:00

1.1 KiB

ChunkIncludeOptions

Options for including chunks in recall results.

Properties

Name Type Description Notes
max_tokens int Maximum tokens for chunks (chunks may be truncated) [optional] [default to 8192]

Example

from hindsight_client_api.models.chunk_include_options import ChunkIncludeOptions

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

# convert the object into a dict
chunk_include_options_dict = chunk_include_options_instance.to_dict()
# create an instance of ChunkIncludeOptions from a dict
chunk_include_options_from_dict = ChunkIncludeOptions.from_dict(chunk_include_options_dict)

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