fleet-memory/hindsight-clients/python/hindsight_client_api/docs/RecallRequest.md
Nicolò Boschi 040eb33ea6
improve ci and tests (#22)
* improve ci and tests

* add more tests

* fixes

* fix tests

* fix more

* fix

* fix

* fix

* fix

* fix for real

* tests and doc

* fix cp

* fix link pg0

* fix pg0

* fix pg0

* fix pg0

* even better

* more

* fix
2025-12-09 19:16:00 +01:00

1.3 KiB

RecallRequest

Request model for recall endpoint.

Properties

Name Type Description Notes
query str
types List[str] [optional]
budget Budget [optional]
max_tokens int [optional] [default to 4096]
trace bool [optional] [default to False]
query_timestamp str [optional]
include IncludeOptions Options for including additional data (entities are included by default) [optional]

Example

from hindsight_client_api.models.recall_request import RecallRequest

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

# convert the object into a dict
recall_request_dict = recall_request_instance.to_dict()
# create an instance of RecallRequest from a dict
recall_request_from_dict = RecallRequest.from_dict(recall_request_dict)

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