fleet-memory/hindsight-clients/python/hindsight_client_api/docs/ReflectResponse.md
Nicolò Boschi d49e8201b4
feat: add max_tokens and structured output to /reflect (#74)
* feat: add structured output to /reflect

* feat: add structured output to /reflect

* imrpove

* add max_toksn

* fix rust client

* fix rust client

* fix rust client

* try fix

* try fix

* no stricts
2026-01-01 17:09:39 +01:00

1.1 KiB

ReflectResponse

Response model for think endpoint.

Properties

Name Type Description Notes
text str
based_on List[ReflectFact] [optional] [default to []]
structured_output Dict[str, object] [optional]

Example

from hindsight_client_api.models.reflect_response import ReflectResponse

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

# convert the object into a dict
reflect_response_dict = reflect_response_instance.to_dict()
# create an instance of ReflectResponse from a dict
reflect_response_from_dict = ReflectResponse.from_dict(reflect_response_dict)

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