Anthropic 3.2.1-dev.10
See the version list below for details.
dotnet add package Anthropic --version 3.2.1-dev.10
NuGet\Install-Package Anthropic -Version 3.2.1-dev.10
<PackageReference Include="Anthropic" Version="3.2.1-dev.10" />
<PackageVersion Include="Anthropic" Version="3.2.1-dev.10" />
<PackageReference Include="Anthropic" />
paket add Anthropic --version 3.2.1-dev.10
#r "nuget: Anthropic, 3.2.1-dev.10"
#addin nuget:?package=Anthropic&version=3.2.1-dev.10&prerelease
#tool nuget:?package=Anthropic&version=3.2.1-dev.10&prerelease
Anthropic
Features 🔥
- Fully generated C# SDK based on official OpenAPI specification using AutoSDK
- Automatic releases of new preview versions if there was an update to the OpenAPI specification
- Source generator to define tools natively through C# interfaces
- All modern .NET features - nullability, trimming, NativeAOT, etc.
- Support .Net Framework/.Net Standard 2.0
- Supporting Microsoft.Extensions.AI
- Supports all endpoints of the API, including batch requests, count tokens, and prompt caching.
Usage
using Anthropic;
using var client = new AnthropicClient(apiKey);
var response = await client.CreateMessageAsync(
model: CreateMessageRequestModel.Claude35Sonnet20240620,
messages: [
"What's the weather like today?",
"Sure! Could you please provide me with your location?".AsAssistantMessage(),
"Dubai, UAE",
],
maxTokens: 250);
Tools
using CSharpToJsonSchema;
public enum Unit
{
Celsius,
Fahrenheit,
}
public class Weather
{
public string Location { get; set; } = string.Empty;
public double Temperature { get; set; }
public Unit Unit { get; set; }
public string Description { get; set; } = string.Empty;
}
[GenerateJsonSchema]
public interface IWeatherFunctions
{
[Description("Get the current weather in a given location")]
public Weather GetCurrentWeather(
[Description("The city and state, e.g. San Francisco, CA")] string location,
Unit unit = Unit.Celsius);
[Description("Get the current weather in a given location")]
public Task<Weather> GetCurrentWeatherAsync(
[Description("The city and state, e.g. San Francisco, CA")] string location,
Unit unit = Unit.Celsius,
CancellationToken cancellationToken = default);
}
public class WeatherService : IWeatherFunctions
{
public Weather GetCurrentWeather(string location, Unit unit = Unit.Celsius)
{
return new Weather
{
Location = location,
Temperature = 22.0,
Unit = unit,
Description = "Sunny",
};
}
public Task<Weather> GetCurrentWeatherAsync(string location, Unit unit = Unit.Celsius, CancellationToken cancellationToken = default)
{
return Task.FromResult(new Weather
{
Location = location,
Temperature = 22.0,
Unit = unit,
Description = "Sunny",
});
}
}
using Anthropic;
using var client = new AnthropicClient(apiKey);
var service = new WeatherService();
var tools = service.AsTools();
List<Message> messages = ["What is the current temperature in Dubai, UAE in Celsius?"];
var response = await client.CreateMessageAsync(
model: CreateMessageRequestModel.Claude35Sonnet20240620,
messages: messages,
maxTokens: 300,
system: "You are a helpful weather assistant.",
toolChoice: new ToolChoice
{
Type = ToolChoiceType.Auto,
},
tools: tools);
messages.Add(response.AsRequestMessage());
foreach (var toolUse in response.Content.Value2!
.Where(x => x.IsToolUse)
.Select(x => x.ToolUse))
{
var json = await service.CallAsync(
functionName: toolUse!.Name,
argumentsAsJson: toolUse.Input.AsJson());
messages.Add(json.AsToolCall(toolUse));
}
response = await client.CreateMessageAsync(
model: CreateMessageRequestModel.Claude35Sonnet20240620,
messages: messages,
maxTokens: 300,
system: "You are a helpful weather assistant.",
toolChoice: new ToolChoice
{
Type = ToolChoiceType.Auto,
},
tools: tools);
Support
Priority place for bugs: https://github.com/tryAGI/Anthropic/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Anthropic/discussions
Discord: https://discord.gg/Ca2xhfBf3v
Acknowledgments
This project is supported by JetBrains through the Open Source Support Program.
This project is supported by CodeRabbit through the Open Source Support Program.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.1)
- Microsoft.Extensions.AI.Abstractions (>= 9.3.0-preview.1.25114.11)
- System.Text.Json (>= 9.0.0)
-
.NETStandard 2.0
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.1)
- Microsoft.Extensions.AI.Abstractions (>= 9.3.0-preview.1.25114.11)
- System.Text.Json (>= 9.0.0)
-
net8.0
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.1)
- Microsoft.Extensions.AI.Abstractions (>= 9.3.0-preview.1.25114.11)
- System.Text.Json (>= 9.0.0)
-
net9.0
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.1)
- Microsoft.Extensions.AI.Abstractions (>= 9.3.0-preview.1.25114.11)
- System.Text.Json (>= 9.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Anthropic:
Package | Downloads |
---|---|
LangChain.Providers.Anthropic
Anthropic API LLM and Chat model provider. |
|
Richasy.AgentKernel.Connectors.Anthropic
Agent Kernel connectors for Anthropic, include Chat service. |
|
CToolkit.DesktopUI.AIAdapter
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.4.2-dev.3 | 0 | 4/14/2025 |
3.4.2-dev.2 | 121 | 4/9/2025 |
3.4.2-dev.1 | 115 | 4/7/2025 |
3.4.1 | 310 | 4/2/2025 |
3.4.1-dev.11 | 115 | 3/31/2025 |
3.4.1-dev.10 | 107 | 3/30/2025 |
3.4.1-dev.8 | 164 | 3/21/2025 |
3.4.1-dev.7 | 154 | 3/11/2025 |
3.4.1-dev.6 | 134 | 3/9/2025 |
3.4.1-dev.5 | 173 | 3/7/2025 |
3.4.1-dev.4 | 191 | 3/5/2025 |
3.4.0 | 674 | 2/28/2025 |
3.3.1-dev.1 | 54 | 2/28/2025 |
3.3.0 | 122 | 2/27/2025 |
3.2.1-dev.10 | 51 | 2/27/2025 |
3.2.1-dev.7 | 78 | 2/17/2025 |
3.2.0 | 7,390 | 1/27/2025 |
3.1.1-dev.8 | 53 | 1/15/2025 |
3.1.1-dev.6 | 64 | 1/7/2025 |
3.1.0 | 8,618 | 12/18/2024 |
3.0.0 | 1,469 | 12/10/2024 |
2.1.2-dev.4 | 57 | 12/10/2024 |
2.1.2-dev.3 | 55 | 12/10/2024 |
2.0.1-dev.11 | 187 | 11/20/2024 |
2.0.1-dev.10 | 58 | 11/14/2024 |
2.0.1-dev.9 | 59 | 11/13/2024 |
2.0.1-dev.8 | 78 | 11/13/2024 |
2.0.1-dev.3 | 96 | 10/29/2024 |
2.0.1-dev.2 | 61 | 10/29/2024 |
2.0.1-dev.1 | 59 | 10/28/2024 |
2.0.0 | 11,087 | 10/28/2024 |
1.4.5-dev.5 | 57 | 10/28/2024 |
1.4.5-dev.1 | 51 | 10/28/2024 |
1.4.4 | 6,119 | 10/26/2024 |
1.4.3-dev.1 | 121 | 10/24/2024 |
1.4.2 | 1,367 | 10/24/2024 |
1.4.1 | 75 | 10/24/2024 |
1.3.0 | 2,750 | 10/11/2024 |
1.2.1-dev.18 | 86 | 9/23/2024 |
1.2.1-dev.14 | 68 | 9/20/2024 |
1.2.1-dev.13 | 59 | 9/20/2024 |
1.2.1-dev.10 | 92 | 9/16/2024 |
1.2.1-dev.4 | 15,693 | 8/29/2024 |
1.2.0 | 11,980 | 8/22/2024 |
1.1.1-dev.13 | 84 | 8/21/2024 |
1.1.1-dev.12 | 76 | 8/20/2024 |
1.1.1-dev.10 | 78 | 8/19/2024 |
1.1.1-dev.9 | 81 | 8/19/2024 |
1.1.1-dev.8 | 83 | 8/19/2024 |
1.1.1-dev.7 | 83 | 8/19/2024 |
1.1.1-dev.2 | 140 | 8/15/2024 |
1.1.1-dev.1 | 85 | 8/13/2024 |
1.1.0 | 2,412 | 8/13/2024 |
1.0.2-dev.1 | 76 | 8/12/2024 |
1.0.1 | 1,553 | 8/6/2024 |
1.0.0 | 1,305 | 8/3/2024 |
0.4.1-dev.6 | 48 | 8/6/2024 |
0.4.1-dev.2 | 48 | 8/3/2024 |
0.4.0 | 1,662 | 7/22/2024 |
0.3.1 | 18,250 | 11/24/2023 |
0.3.0 | 44,652 | 7/20/2023 |
0.2.0 | 1,534 | 7/20/2023 |
0.1.0 | 1,057 | 7/15/2023 |
0.0.0-dev.35 | 65 | 7/22/2024 |