1.1 KiB
1.1 KiB
AgentProfileResponse
Response model for agent profile.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_id | str | ||
| name | str | ||
| personality | PersonalityTraits | ||
| background | str |
Example
from hindsight_client_api.models.agent_profile_response import AgentProfileResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AgentProfileResponse from a JSON string
agent_profile_response_instance = AgentProfileResponse.from_json(json)
# print the JSON string representation of the object
print(AgentProfileResponse.to_json())
# convert the object into a dict
agent_profile_response_dict = agent_profile_response_instance.to_dict()
# create an instance of AgentProfileResponse from a dict
agent_profile_response_from_dict = AgentProfileResponse.from_dict(agent_profile_response_dict)