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
6 changes: 3 additions & 3 deletions Anthropic.SDK/Anthropic.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<PackageTags>Claude, AI, ML, API, Anthropic</PackageTags>
<Title>Claude API</Title>
<PackageReleaseNotes>
Updates Microsoft.Extensions.AI.Abstractions, Bug Fixes
Sonnet 4.5, Caching Enhancements, Minor Improvements
</PackageReleaseNotes>
<PackageId>Anthropic.SDK</PackageId>
<Version>5.5.2</Version>
<Version>5.5.3</Version>
<AssemblyVersion>5.5.0.0</AssemblyVersion>
<FileVersion>5.5.2.0</FileVersion>
<FileVersion>5.5.3.0</FileVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
Expand Down
5 changes: 5 additions & 0 deletions Anthropic.SDK/Constants/AnthropicModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ public static class AnthropicModels
/// </summary>
public const string Claude4Sonnet = "claude-sonnet-4-20250514";

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

/// <summary>
/// Claude 4 Opus
/// </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 @@ -35,10 +35,15 @@ public static class VertexAIModels
/// </summary>
public const string Claude4Sonnet = "claude-sonnet-4@20250514";

/// <summary>
/// Claude 4.5 Sonnet
/// </summary>
public const string Claude45Sonnet = "claude-sonnet-4@20250514";

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

/// <summary>
/// Claude 4.1 Opus
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,8 @@ Vertex AI provides access to the following Claude models:
- `VertexAIModels.Claude35Sonnet`: High level of intelligence and capability
- `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.Claude4Sonnet`: Sonnet model with toggleable extended thinking
- `VertexAIModels.Claude45Sonnet`: Newest Sonnet model with toggleable extended thinking
- `VertexAIModels.Claude4Opus`: Previous Opus Model and powerful thinking model
- `VertexAIModels.Claude41Opus`: Newest Opus Model and most powerful thinking model

Expand Down
Loading