13 lines
394 B
C#
13 lines
394 B
C#
namespace AnthropicClient.Models;
|
|
|
|
/// <summary>
|
|
/// Represents the any tool choice mode.
|
|
/// </summary>
|
|
public class AnyToolChoice : ToolChoice
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AnyToolChoice"/> class.
|
|
/// </summary>
|
|
/// <returns>A new instance of the <see cref="AnyToolChoice"/> class.</returns>
|
|
public AnyToolChoice() : base(ToolChoiceType.Any) { }
|
|
} |