Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Access to Anthropic's safety-first language model APIs in C#
| Date | Stars |
|---|---|
| 2026-07-31 | 313 |
| 2026-08-02 | 313 |
| 2026-08-12 | 316 |
| 2026-08-18 | 318 |
| 2026-08-23 | 318 |
| 2026-08-25 | 318 |
| 2026-08-26 | 317 |
| 2026-08-27 | 318 |
| 2026-08-29 | 318 |
| 2026-09-02 | 319 |
| 2026-09-03 | 319 |
| 2026-09-04 | 320 |
| 2026-09-05 | 321 |
| 2026-09-10 | 321 |
| 2026-09-11 | 322 |
| 2026-09-12 | 322 |
| 2026-09-16 | 323 |
| 2026-09-17 | 323 |
| 2026-09-18 | 323 |
| 2026-09-19 | 323 |
| 2026-09-20 | 323 |
Today
— stars today
This week
+1 stars this week
This month
+5 stars this month
Momentum
36.0
growth rate 0.31%/day
# Claude SDK for C#
[](https://www.nuget.org/packages/Anthropic)
> [!IMPORTANT]
> As of version 10+, the `Anthropic` package is now the official Claude SDK for C#. Package versions 3.X and below were previously used for the tryAGI community-built SDK, which has moved to [`tryAGI.Anthropic`](https://www.nuget.org/packages/tryagi.Anthropic/). If you need to continue using the former client in your project, update your package reference to `tryAGI.Anthropic`.
The Claude SDK for C# provides access to the [Claude API](https://docs.anthropic.com/en/api/) from C# applications.
## Documentation
Full documentation is available at **[platform.claude.com/docs/en/api/sdks/csharp](https://platform.claude.com/docs/en/api/sdks/csharp)**.
## Installation
```bash
dotnet add package Anthropic
```
## Getting started
```csharp
using System;
using Anthropic;
using Anthropic.Models.Messages;
AnthropicClient client = new();
MessageCreateParams parameters = new()
{
MaxTokens = 1024,
Messages =
[
new()
{
Role = Role.User,
Content = "Hello, Claude",
},
],
Model = "claude-opus-4-6",
};
var message = await client.Messages.Create(parameters);
Console.WriteLine(message);
```
## Requirements
.NET Standard 2.0+
## Contributing
See [CONTRIBUTING.md](./CONTRIBUTING.md).
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Excerpt of 1,510 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:9ca788e795d0a0b4, llm:repository description: 'Access to Anthropic's safety-first language model APIs in C#'
matched fp:9ca788e795d0a0b4, llm:repository description: 'Access to Anthropic's safety-first language model APIs in C#'
matched fp:9ca788e795d0a0b4, llm:repository description: 'Access to Anthropic's safety-first language model APIs in C#'