Anthropic 3.4.1-dev.11
See the version list below for details.
dotnet add package Anthropic --version 3.4.1-dev.11
NuGet\Install-Package Anthropic -Version 3.4.1-dev.11
<PackageReference Include="Anthropic" Version="3.4.1-dev.11" />
<PackageVersion Include="Anthropic" Version="3.4.1-dev.11" />
<PackageReference Include="Anthropic" />
paket add Anthropic --version 3.4.1-dev.11
#r "nuget: Anthropic, 3.4.1-dev.11"
#addin nuget:?package=Anthropic&version=3.4.1-dev.11&prerelease
#tool nuget:?package=Anthropic&version=3.4.1-dev.11&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. |
.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.3.0-preview.1.25161.3)
- 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.3.0-preview.1.25161.3)
- 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.3.0-preview.1.25161.3)
- 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.3.0-preview.1.25161.3)
- System.Net.ServerSentEvents (>= 9.0.2)
- System.Text.Json (>= 9.0.2)
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.2 | 121 | 5 days ago |
3.4.2-dev.1 | 115 | 7 days ago |
3.4.1 | 305 | 12 days ago |
3.4.1-dev.11 | 115 | 14 days ago |
3.4.1-dev.10 | 107 | 15 days ago |
3.4.1-dev.8 | 162 | 24 days ago |
3.4.1-dev.7 | 154 | a month ago |
3.4.1-dev.6 | 134 | a month ago |
3.4.1-dev.5 | 173 | a month ago |
3.4.1-dev.4 | 191 | a month ago |
3.4.0 | 674 | 2 months ago |
3.3.1-dev.1 | 54 | 2 months ago |
3.3.0 | 122 | 2 months ago |
3.2.1-dev.10 | 51 | 2 months ago |
3.2.1-dev.7 | 78 | 2 months ago |
3.2.0 | 7,384 | 3 months ago |
3.1.1-dev.8 | 53 | 3 months ago |
3.1.1-dev.6 | 64 | 3 months ago |
3.1.0 | 8,609 | 4 months ago |
3.0.0 | 1,469 | 4 months ago |
2.1.2-dev.4 | 57 | 4 months ago |
2.1.2-dev.3 | 55 | 4 months ago |
2.0.1-dev.11 | 187 | 5 months ago |
2.0.1-dev.10 | 58 | 5 months ago |
2.0.1-dev.9 | 59 | 5 months ago |
2.0.1-dev.8 | 78 | 5 months ago |
2.0.1-dev.3 | 96 | 5 months ago |
2.0.1-dev.2 | 61 | 6 months ago |
2.0.1-dev.1 | 59 | 6 months ago |
2.0.0 | 11,087 | 6 months ago |
1.4.5-dev.5 | 57 | 6 months ago |
1.4.5-dev.1 | 51 | 6 months ago |
1.4.4 | 6,102 | 6 months ago |
1.4.3-dev.1 | 121 | 6 months ago |
1.4.2 | 1,367 | 6 months ago |
1.4.1 | 75 | 6 months ago |
1.3.0 | 2,750 | 6 months ago |
1.2.1-dev.18 | 86 | 7 months ago |
1.2.1-dev.14 | 68 | 7 months ago |
1.2.1-dev.13 | 59 | 7 months ago |
1.2.1-dev.10 | 92 | 7 months ago |
1.2.1-dev.4 | 15,683 | 8 months ago |
1.2.0 | 11,980 | 8 months ago |
1.1.1-dev.13 | 84 | 8 months ago |
1.1.1-dev.12 | 76 | 8 months ago |
1.1.1-dev.10 | 78 | 8 months ago |
1.1.1-dev.9 | 81 | 8 months ago |
1.1.1-dev.8 | 83 | 8 months ago |
1.1.1-dev.7 | 83 | 8 months ago |
1.1.1-dev.2 | 140 | 8 months ago |
1.1.1-dev.1 | 85 | 8 months ago |
1.1.0 | 2,412 | 8 months ago |
1.0.2-dev.1 | 76 | 8 months ago |
1.0.1 | 1,553 | 8 months ago |
1.0.0 | 1,305 | 8 months ago |
0.4.1-dev.6 | 48 | 8 months ago |
0.4.1-dev.2 | 48 | 8 months ago |
0.4.0 | 1,662 | 9 months ago |
0.3.1 | 18,250 | 11/24/2023 |
0.3.0 | 44,650 | 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 | 9 months ago |