Values.ParameterDetailSourceContains details about a parameter in a function for an action group. This data type is used in the following API operations: CreateAgentActionGroup request CreateAgentActionGroup response UpdateAgentActionGroup request UpdateAgentActionGroup response GetAgentActionGroup response
type nonrec t = {description : ParameterDescription.t option;A description of the parameter. Helps the foundation model determine how to elicit the parameters from the user.
*)type_ : Type.t;The data type of the parameter.
*)required : Boolean.t option;Whether the parameter is required for the agent to complete the function for action group invocation.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of ParameterDescription.t ])
list ]