LabelStudio 1.0.0
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package LabelStudio --version 1.0.0
NuGet\Install-Package LabelStudio -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="LabelStudio" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LabelStudio" Version="1.0.0" />
<PackageReference Include="LabelStudio" />
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 LabelStudio --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LabelStudio, 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.
#:package LabelStudio@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LabelStudio&version=1.0.0
#tool nuget:?package=LabelStudio&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
LabelStudio
Features 🔥
- Fully generated C# SDK based on official Label Studio OpenAPI specification using AutoSDK
- Same day update to support new features
- Updated and supported automatically if there are no breaking changes
- All modern .NET features - nullability, trimming, NativeAOT, etc.
- Support .Net Framework/.Net Standard 2.0
- MEAI (Microsoft.Extensions.AI)
AIFunctiontools for use with anyIChatClient
Usage
using LabelStudio;
// Label Studio uses Token-based auth
using var client = new LabelStudioClient(apiKey);
// List projects
var projects = await client.Projects2.ListAsync();
// Get project details
var project = await client.Projects2.GetAsync(id: 1);
// List tasks in a project
var tasks = await client.Tasks2.List2Async(project: 1);
// Create an annotation
var annotation = await client.Annotations2.CreateAsync(
id: 1, // task ID
result: new List<object>());
MEAI Tools
using LabelStudio;
using Microsoft.Extensions.AI;
using var client = new LabelStudioClient(apiKey);
// Create AIFunction tools for use with any IChatClient
var tools = new AITool[]
{
client.AsListProjectsTool(),
client.AsGetProjectTool(),
client.AsListTasksTool(),
client.AsCreateAnnotationTool(),
};
Support
Priority place for bugs: https://github.com/tryAGI/LabelStudio/issues
Priority place for ideas and general questions: https://github.com/tryAGI/LabelStudio/discussions
Discord: https://discord.gg/Ca2xhfBf3v
Acknowledgments
This project is supported by JetBrains through the Open Source Support Program.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.Extensions.AI (>= 10.7.0)
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.1-dev.92 | 0 | 9/27/2026 |
| 1.0.1-dev.91 | 40 | 9/25/2026 |
| 1.0.1-dev.90 | 39 | 9/24/2026 |
| 1.0.1-dev.89 | 51 | 9/21/2026 |
| 1.0.1-dev.88 | 57 | 9/19/2026 |
| 1.0.1-dev.87 | 47 | 9/17/2026 |
| 1.0.1-dev.86 | 51 | 9/17/2026 |
| 1.0.1-dev.85 | 48 | 9/16/2026 |
| 1.0.1-dev.84 | 57 | 9/16/2026 |
| 1.0.1-dev.83 | 50 | 9/13/2026 |
| 1.0.1-dev.82 | 52 | 9/12/2026 |
| 1.0.1-dev.81 | 66 | 9/11/2026 |
| 1.0.1-dev.80 | 61 | 9/11/2026 |
| 1.0.1-dev.79 | 76 | 9/10/2026 |
| 1.0.1-dev.78 | 58 | 9/10/2026 |
| 1.0.1-dev.77 | 66 | 9/10/2026 |
| 1.0.1-dev.76 | 65 | 9/9/2026 |
| 1.0.1-dev.75 | 68 | 9/9/2026 |
| 1.0.1-dev.74 | 67 | 9/8/2026 |
| 1.0.0 | 142 | 6/23/2026 |
Loading failed