Values.ToolChoiceSourceDetermines which tools the model should request in a call to Converse or ConverseStream. For more information, see Call a tool with the Converse API in the Amazon Bedrock User Guide.
type nonrec t = {auto : AutoToolChoice.t option;(Default). The Model automatically decides if a tool should be called or whether to generate text instead.
*)any : AnyToolChoice.t option;The model must request at least one tool (no text is generated).
*)tool : SpecificToolChoice.t option;The Model must request the specified tool. Only supported by Anthropic Claude 3 and Amazon Nova models.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Structure of (string * [> `String of ToolName.t ]) list ])
list ]