namespace AnthropicClient.Models; /// /// Provides constants for the Anthropic models. /// public static class AnthropicModels { /// /// The Claude 3 Opus model. /// public const string Claude3Opus = "claude-3-opus-20240229"; /// /// The Claude 3 Opus model. /// public const string Claude3Opus20241022 = "claude-3-opus-20240229"; /// /// The Claude 3 Opus model. /// public const string Claude3OpusLatest = "claude-3-opus-latest"; /// /// The Claude 3 Sonnet model. /// public const string Claude3Sonnet = "claude-3-sonnet-20240229"; /// /// The Claude 3 Sonnet model. /// public const string Claude3Sonnet20240229 = "claude-3-sonnet-20240229"; /// /// The Claude 3.5 Sonnet model. /// public const string Claude35Sonnet = "claude-3-5-sonnet-20240620"; /// /// The Claude 3.5 Sonnet model. /// public const string Claude35Sonnet20240620 = "claude-3-5-sonnet-20240620"; /// /// The Claude 3.5 Sonnet model. /// public const string Claude35Sonnet20241022 = "claude-3-5-sonnet-20241022"; /// /// The Claude 3.5 Sonnet model. /// public const string Claude35SonnetLatest = "claude-3-5-sonnet-latest"; /// /// The Claude 3 Haiku model. /// public const string Claude3Haiku = "claude-3-haiku-20240307"; /// /// The Claude 3 Haiku model. /// public const string Claude3Haiku20240307 = "claude-3-haiku-20240307"; /// /// The Claude 3.5 Haiku model. /// public const string Claude35Haiku20241022 = "claude-3-5-haiku-20241022"; /// /// The Claude 3.5 Haiku model. /// public const string Claude35HaikuLatest = "claude-3-5-haiku-latest"; }