* 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
1.1 KiB
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)