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

1.1 KiB

CreateAgentRequest

Request model for creating/updating an agent.

Properties

Name Type Description Notes
name str [optional]
personality PersonalityTraits [optional]
background str [optional]

Example

from hindsight_client_api.models.create_agent_request import CreateAgentRequest

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

# convert the object into a dict
create_agent_request_dict = create_agent_request_instance.to_dict()
# create an instance of CreateAgentRequest from a dict
create_agent_request_from_dict = CreateAgentRequest.from_dict(create_agent_request_dict)

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