Anthropic 3.7.1-dev.6
See the version list below for details.
dotnet add package Anthropic --version 3.7.1-dev.6
NuGet\Install-Package Anthropic -Version 3.7.1-dev.6
<PackageReference Include="Anthropic" Version="3.7.1-dev.6" />
<PackageVersion Include="Anthropic" Version="3.7.1-dev.6" />
<PackageReference Include="Anthropic" />
paket add Anthropic --version 3.7.1-dev.6
#r "nuget: Anthropic, 3.7.1-dev.6"
#addin nuget:?package=Anthropic&version=3.7.1-dev.6&prerelease
#tool nuget:?package=Anthropic&version=3.7.1-dev.6&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 messageParams = new CreateMessageParams()
{
Model = new Model(ModelVariant6.Claude35SonnetLatest),
Messages = [
new InputMessage(InputMessageRole.User, "What's the weather like today?"),
new InputMessage(InputMessageRole.Assistant, "Sure! Could you please provide me with your location?"),
new InputMessage(InputMessageRole.User, "Dubai, UAE")
],
MaxTokens = 250
};
var response = await client.Messages.MessagesPostAsync(messageParams);
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();
var messageParams = new CreateMessageParams()
{
Model = new Model(ModelVariant6.Claude35SonnetLatest),
Messages = [new InputMessage(InputMessageRole.User, "What is the current temperature in Dubai, UAE in Celsius?")],
MaxTokens = 4096,
System = "You are a helpful weather assistant.",
ToolChoice = new ToolChoice(new ToolChoiceAuto()),
Tools = tools
};
var response = await client.Messages.MessagesPostAsync(messageParams);
messageParams.Messages.Add(response.AsInputMessage());
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());
messageParams.Messages.Add(json.AsToolCall(toolUse));
}
response = await client.Messages.MessagesPostAsync(messageParams);
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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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.2)
- Microsoft.Extensions.AI.Abstractions (>= 9.5.0)
- System.Net.ServerSentEvents (>= 9.0.2)
- System.Text.Json (>= 9.0.2)
-
.NETStandard 2.0
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.2)
- Microsoft.Extensions.AI.Abstractions (>= 9.5.0)
- System.Net.ServerSentEvents (>= 9.0.2)
- System.Text.Json (>= 9.0.2)
-
net8.0
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.2)
- Microsoft.Extensions.AI.Abstractions (>= 9.5.0)
- System.Net.ServerSentEvents (>= 9.0.2)
- System.Text.Json (>= 9.0.2)
-
net9.0
- CSharpToJsonSchema (>= 3.10.1)
- Microsoft.Bcl.AsyncInterfaces (>= 9.0.2)
- Microsoft.Extensions.AI.Abstractions (>= 9.5.0)
- System.Net.ServerSentEvents (>= 9.0.2)
- System.Text.Json (>= 9.0.2)
NuGet packages (5)
Showing the top 5 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.Microsoft.Extensions.AI
Alpha-Version of the WinForms AI- and Modernization-Toolkit. You need to target TFM 'net9-windows10.0.22000.0' at the least: NET 9+ and Windows version 10.0.22000.0 or higher. Use on own risk - this is a personal Hobby project, provided without support neither from Microsoft nor from the Authors. |
|
CToolkit.DesktopUI.AIAdapter
Package Description |
|
WarpToolkit.Microsoft.Extensions.AI
Preview-Version of the Winforms Ai- and RevamP -Toolkit (WARP). You need to target TFM 'net9-windows10.0.22000.0' at the least. Note, that this is a preview version and may be unstable. **DISCLAIMER** – USE AT YOUR OWN RISK This NuGet package is a personal collection of experimental ideas and proof-of-concepts by Klaus Löffelmann. It is part of an AI learning ramp-up project focused on exploring modernization strategies for Windows Forms (WinForms). The package is not production-ready and may contain bugs, incomplete features, or other issues. It is intended solely for educational and conceptual exploration. Although the author is a full-time Microsoft employee, this project is a personal initiative and is not affiliated with, endorsed by, or supported by Microsoft. Versions 0.x are released under the MIT License. Licensing terms may change for future 1.x versions and beyond. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
3.7.1 | 693 | 6/22/2025 |
3.7.1-dev.6 | 115 | 6/18/2025 |
3.7.1-dev.5 | 111 | 6/18/2025 |
3.7.1-dev.4 | 113 | 6/18/2025 |
3.7.1-dev.3 | 113 | 6/18/2025 |
3.7.0 | 1,414 | 6/6/2025 |
3.6.1-dev.4 | 212 | 5/22/2025 |
3.6.1-dev.2 | 142 | 5/19/2025 |
3.6.1-dev.1 | 112 | 5/19/2025 |
3.6.0 | 785 | 5/16/2025 |
3.5.1-dev.3 | 169 | 5/16/2025 |
3.5.1-dev.2 | 207 | 5/14/2025 |
3.5.1-dev.1 | 203 | 5/13/2025 |
3.5.0 | 251 | 5/13/2025 |
3.4.2-dev.11 | 203 | 5/13/2025 |
3.4.2-dev.4 | 407 | 4/21/2025 |
3.4.2-dev.3 | 165 | 4/14/2025 |
3.4.2-dev.2 | 239 | 4/9/2025 |
3.4.2-dev.1 | 126 | 4/7/2025 |
3.4.1 | 3,323 | 4/2/2025 |
3.4.1-dev.11 | 125 | 3/31/2025 |
3.4.1-dev.10 | 120 | 3/30/2025 |
3.4.1-dev.8 | 250 | 3/21/2025 |
3.4.1-dev.7 | 165 | 3/11/2025 |
3.4.1-dev.6 | 151 | 3/9/2025 |
3.4.1-dev.5 | 183 | 3/7/2025 |
3.4.1-dev.4 | 204 | 3/5/2025 |
3.4.0 | 752 | 2/28/2025 |
3.3.1-dev.1 | 69 | 2/28/2025 |
3.3.0 | 147 | 2/27/2025 |
3.2.1-dev.10 | 63 | 2/27/2025 |
3.2.1-dev.7 | 91 | 2/17/2025 |
3.2.0 | 8,013 | 1/27/2025 |
3.1.1-dev.8 | 62 | 1/15/2025 |
3.1.1-dev.6 | 85 | 1/7/2025 |
3.1.0 | 8,918 | 12/18/2024 |
3.0.0 | 1,495 | 12/10/2024 |
2.1.2-dev.4 | 74 | 12/10/2024 |
2.1.2-dev.3 | 65 | 12/10/2024 |
2.0.1-dev.11 | 198 | 11/20/2024 |
2.0.1-dev.10 | 78 | 11/14/2024 |
2.0.1-dev.9 | 66 | 11/13/2024 |
2.0.1-dev.8 | 88 | 11/13/2024 |
2.0.1-dev.3 | 107 | 10/29/2024 |
2.0.1-dev.2 | 72 | 10/29/2024 |
2.0.1-dev.1 | 72 | 10/28/2024 |
2.0.0 | 11,555 | 10/28/2024 |
1.4.5-dev.5 | 70 | 10/28/2024 |
1.4.5-dev.1 | 64 | 10/28/2024 |
1.4.4 | 13,820 | 10/26/2024 |
1.4.3-dev.1 | 138 | 10/24/2024 |
1.4.2 | 1,578 | 10/24/2024 |
1.4.1 | 97 | 10/24/2024 |
1.3.0 | 2,768 | 10/11/2024 |
1.2.1-dev.18 | 98 | 9/23/2024 |
1.2.1-dev.14 | 78 | 9/20/2024 |
1.2.1-dev.13 | 68 | 9/20/2024 |
1.2.1-dev.10 | 100 | 9/16/2024 |
1.2.1-dev.4 | 19,051 | 8/29/2024 |
1.2.0 | 12,027 | 8/22/2024 |
1.1.1-dev.13 | 90 | 8/21/2024 |
1.1.1-dev.12 | 87 | 8/20/2024 |
1.1.1-dev.10 | 89 | 8/19/2024 |
1.1.1-dev.9 | 91 | 8/19/2024 |
1.1.1-dev.8 | 94 | 8/19/2024 |
1.1.1-dev.7 | 93 | 8/19/2024 |
1.1.1-dev.2 | 148 | 8/15/2024 |
1.1.1-dev.1 | 93 | 8/13/2024 |
1.1.0 | 2,486 | 8/13/2024 |
1.0.2-dev.1 | 84 | 8/12/2024 |
1.0.1 | 1,566 | 8/6/2024 |
1.0.0 | 1,347 | 8/3/2024 |
0.4.1-dev.6 | 58 | 8/6/2024 |
0.4.1-dev.2 | 60 | 8/3/2024 |
0.4.0 | 1,680 | 7/22/2024 |
0.3.1 | 18,467 | 11/24/2023 |
0.3.0 | 53,532 | 7/20/2023 |
0.2.0 | 1,570 | 7/20/2023 |
0.1.0 | 1,090 | 7/15/2023 |
0.0.0-dev.35 | 74 | 7/22/2024 |