[go: up one dir, main page]

Skip to content

A simple and efficient .NET library for accessing Anthropic's Claude AI API. This community-provided library allows you to easily integrate Claude's powerful AI capabilities into your C# applications.

Notifications You must be signed in to change notification settings

betalgo/Anthropic

Repository files navigation

Betalgo Ranul Anthropic Github readme banner

.NET Library for Anthropic Claude

⭐ We appreciate your star, it helps! GitHub Repo stars

Community Links

We have a very new Discord and Static Badge channel. Please come and help us build the .NET AI community.

This C# library is created by Betalgo for the Ranul Tinga Project and is released under the MIT license.

Overview

A simple and efficient .NET library for accessing Anthropic's Claude AI API. This community-provided library allows you to easily integrate Claude's powerful AI capabilities into your C# applications.

Install Package

Betalgo.Ranul.Anthropic

Install-Package Betalgo.Ranul.Anthropic

Documentation and Examples

The repository contains a sample project named Anthropic.Playground to help you understand how to work with Claude using this library. Please refer to the Wiki for detailed documentation and advanced usage scenarios.

Quick Start

Here's a simple example demonstrating how easy it is to use Claude with the Anthropic .NET Library:

var anthropicService = new AnthropicService(new()
{
    ApiKey = Environment.GetEnvironmentVariable("MY_ANTHROPIC_API_KEY")
});

var messageRequest = new MessageRequest
{
    Messages = [Message.FromUser("What is the capital of France?")],
    Model = "claude-3-opus-20240229",
    MaxTokens = 100
};

var messageResponse = await anthropicService.Messages.Create(messageRequest);
if (messageResponse.Successful)
{
    Console.WriteLine(messageResponse.ToString());
}

Notes

This library is a community project for interacting with Anthropic's Claude AI and is not officially supported by Anthropic. Please use it responsibly and in accordance with Anthropic's usage policies for Claude.

Changelog

8.0.0

  • Initial release of the Anthropic Claude .NET Library

Acknowledgements

Maintenance of this project is made possible by all the bug reporters, contributors, and sponsors.

For any issues, contributions, or feedback related to using this library with Claude, feel free to reach out or submit a pull request.

Betalgo GitHub: https://github.com/betalgo
Betalgo Twitter: @Betalgo
Betalgo LinkedIn: Betalgo | LinkedIn

About

A simple and efficient .NET library for accessing Anthropic's Claude AI API. This community-provided library allows you to easily integrate Claude's powerful AI capabilities into your C# applications.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages