fleet-memory/hindsight-clients/python/hindsight_client_api/docs/ReflectResponse.md
2025-11-27 16:22:16 +01:00

1,019 B

ReflectResponse

Response model for think endpoint.

Properties

Name Type Description Notes
text str
based_on List[ReflectFact] [optional] [default to []]

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]