Values.AgentSummarySourceContains details about an agent.
type nonrec t = {agentId : Id.t option;The unique identifier of the agent.
*)agentName : Name.t option;The name of the agent.
*)agentStatus : AgentStatus.t option;The status of the agent.
*)description : Description.t option;The description of the agent.
*)updatedAt : DateTimestamp.t option;The time at which the agent was last updated.
*)latestAgentVersion : Version.t option;The latest version of the agent.
*)guardrailConfiguration : GuardrailConfiguration.t option;Details about the guardrail associated with the agent.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Id.t
| `Structure of (string * [> `String of GuardrailIdentifier.t ]) list
| `Timestamp of DateTimestamp.t ])
list ]