fleet-memory/hindsight-clients/python/hindsight_client_api/docs/ReflectRequest.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.1 KiB

ReflectRequest

Request model for reflect endpoint.

Properties

Name Type Description Notes
query str
budget Budget [optional]
context str [optional]
include ReflectIncludeOptions Options for including additional data (disabled by default) [optional]

Example

from hindsight_client_api.models.reflect_request import ReflectRequest

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

# convert the object into a dict
reflect_request_dict = reflect_request_instance.to_dict()
# create an instance of ReflectRequest from a dict
reflect_request_from_dict = ReflectRequest.from_dict(reflect_request_dict)

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