fleet-memory/hindsight-clients/python/hindsight_client_api/docs/AddBackgroundRequest.md
2025-11-25 19:28:26 +01:00

1.2 KiB

AddBackgroundRequest

Request model for adding/merging background information.

Properties

Name Type Description Notes
content str New background information to add or merge
update_personality bool If true, infer Big Five personality traits from the merged background (default: true) [optional] [default to True]

Example

from hindsight_client_api.models.add_background_request import AddBackgroundRequest

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

# convert the object into a dict
add_background_request_dict = add_background_request_instance.to_dict()
# create an instance of AddBackgroundRequest from a dict
add_background_request_from_dict = AddBackgroundRequest.from_dict(add_background_request_dict)

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