Values.ToolChoiceSourceDefines which tools the model should request when invoked. For more information, see Use a tool to complete an Amazon Bedrock model response.
type nonrec t = {auto : AutoToolChoice.t option;Defines tools. The model automatically decides whether to call a tool or to generate text instead.
*)any : AnyToolChoice.t option;Defines tools, at least one of which must be requested by the model. No text is generated but the results of tool use are sent back to the model to help generate a response.
*)tool : SpecificToolChoice.t option;Defines a specific tool that the model must request. No text is generated but the results of tool use are sent back to the model to help generate a response.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Structure of (string * [> `String of ToolName.t ]) list ])
list ]