namespace AnthropicClient.Models;
///
/// Represents the any tool choice mode.
///
public class AnyToolChoice : ToolChoice
{
///
/// Initializes a new instance of the class.
///
/// A new instance of the class.
public AnyToolChoice() : base(ToolChoiceType.Any) { }
}