Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Anthropic.SDK/Constants/AnthropicModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class AnthropicModels
public const string Claude4Sonnet = "claude-sonnet-4-20250514";

/// <summary>
/// Claude 4.5 Sonnet
/// Claude 4.5 Sonnet - Supports extended thinking
/// </summary>
public const string Claude45Sonnet = "claude-sonnet-4-5-20250929";

Expand All @@ -50,6 +50,11 @@ public static class AnthropicModels
/// </summary>
public const string Claude35Haiku = "claude-3-5-haiku-20241022";

/// <summary>
/// Claude 4.5 Haiku - Supports extended thinking
/// </summary>
public const string Claude45Haiku = "claude-haiku-4-5-20251001";

/// <summary>
/// Claude 3 Haiku
/// </summary>
Expand Down
11 changes: 8 additions & 3 deletions Anthropic.SDK/Constants/VertexAIModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,19 @@ public static class VertexAIModels
public const string Claude4Sonnet = "claude-sonnet-4@20250514";

/// <summary>
/// Claude 4.5 Sonnet
/// Claude 4.5 Sonnet on Vertex AI - Supports extended thinking
/// </summary>
public const string Claude45Sonnet = "claude-sonnet-4@20250514";
public const string Claude45Sonnet = "claude-sonnet-4-5@20250929";

/// <summary>
/// Claude 4.5 Haiku on Vertex AI - Supports extended thinking
/// </summary>
public const string Claude45Haiku = "claude-haiku-4-5@20251001";

/// <summary>
/// Claude 4 Opus
/// </summary>
public const string Claude4Opus = "claude-sonnet-4-5@20250929";
public const string Claude4Opus = "claude-opus-4@20250514";

/// <summary>
/// Claude 4.1 Opus
Expand Down