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
5 changes: 5 additions & 0 deletions Anthropic.SDK/Constants/AnthropicModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ public static class AnthropicModels
/// </summary>
public const string Claude4Opus = "claude-opus-4-20250514";

/// <summary>
/// Claude 4.1 Opus
/// </summary>
public const string Claude41Opus = "claude-opus-4-1-20250805";

/// <summary>
/// Claude 3.5 Haiku
/// </summary>
Expand Down
7 changes: 6 additions & 1 deletion Anthropic.SDK/Constants/VertexAIModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,10 @@ public static class VertexAIModels
/// Claude 4 Opus
/// </summary>
public const string Claude4Opus = "claude-opus-4@20250514";

/// <summary>
/// Claude 4.1 Opus
/// </summary>
public const string Claude41Opus = "claude-opus-4-1@20250805";
}
}
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,8 @@ Vertex AI provides access to the following Claude models:
- `VertexAIModels.Claude35Haiku`: Intelligence at blazing speeds
- `VertexAIModels.Claude37Sonnet`: Highest level of intelligence and capability with toggleable extended thinking
- `VertexAIModels.Claude4Sonnet`: Newest Sonnet model with toggleable extended thinking
- `VertexAIModels.Claude4Opus`: Newest Opus Model and most powerful thinking model
- `VertexAIModels.Claude4Opus`: Previous Opus Model and powerful thinking model
- `VertexAIModels.Claude41Opus`: Newest Opus Model and most powerful thinking model

### Streaming Support

Expand Down