Anthropicker 1.0.0

dotnet add package Anthropicker --version 1.0.0
                    
NuGet\Install-Package Anthropicker -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Anthropicker" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Anthropicker" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Anthropicker" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Anthropicker --version 1.0.0
                    
#r "nuget: Anthropicker, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Anthropicker&version=1.0.0
                    
Install Anthropicker as a Cake Addin
#tool nuget:?package=Anthropicker&version=1.0.0
                    
Install Anthropicker as a Cake Tool

🚀 Anthropicker ✨

Anthropicker is a C# client library for the Anthropic Claude API, making it easy to integrate Claude's AI capabilities into your .NET applications.

🎮 Features

  • Simple, intuitive API with full type safety
  • Support for all Claude 3 family models
  • Streaming and non-streaming responses
  • Multimodal capabilities (text, images, and files)
  • Support for various file types (PDF, DOCX, CSV, etc.)
  • Function calling support via the Tools API
  • Token counting
  • Comprehensive error handling
  • Full XML documentation

🏁 Getting Started

dotnet add package Anthropicker

🛠️ Installation

dotnet add package Anthropicker

🔍 Usage

// Create a client (API key can also be set via ANTHROPIC_API_KEY environment variable)
var client = Anthropicker.Anthropicker.CreateClient("your-api-key-here");

// Create a user message
var message = Anthropicker.Anthropicker.CreateUserMessage("What is Claude?");

// Create a message request
var request = new MessageRequest(
    model: Anthropicker.Anthropicker.Models.Claude37Sonnet,
    messages: new List<Message> { message },
    maxTokens: 1024
);

// Get a response
var response = await client.Messages.CreateMessageAsync(request);

// Print the response
Console.WriteLine(response.Content.OfType<TextContent>().First().Text);

🤝 Contributing

Don't hesitate to make your contribution - all help is welcome!

📜 License

This project is licensed under the MIT License.

🙏 Acknowledgments

Built with passion and probably too much coffee

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 217 3/18/2025 1.0.0 is deprecated because it has critical bugs.