LeonardoAI 1.0.3-dev.9

This is a prerelease version of LeonardoAI.
dotnet add package LeonardoAI --version 1.0.3-dev.9
                    
NuGet\Install-Package LeonardoAI -Version 1.0.3-dev.9
                    
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="LeonardoAI" Version="1.0.3-dev.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LeonardoAI" Version="1.0.3-dev.9" />
                    
Directory.Packages.props
<PackageReference Include="LeonardoAI" />
                    
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 LeonardoAI --version 1.0.3-dev.9
                    
#r "nuget: LeonardoAI, 1.0.3-dev.9"
                    
#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 LeonardoAI@1.0.3-dev.9
                    
#: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=LeonardoAI&version=1.0.3-dev.9&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=LeonardoAI&version=1.0.3-dev.9&prerelease
                    
Install as a Cake Tool

Leonardo

![Nuget package](https://img.shields.io/nuget/vpre/LeonardoAI dotnet License: MIT Discord

Features 🔥

  • Fully generated C# SDK based on official OpenAPI specification using OpenApiGenerator
  • 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

Usage

using Leonardo;

using var api = new LeonardoClient(apiKey);

var createResponse = await api.Image.CreateGenerationAsync(
    prompt: "Generate cat");

createResponse.SdGenerationJob.Should().NotBeNull();

await Task.Delay(TimeSpan.FromSeconds(15));

var response = await api.Image.GetGenerationByIdAsync(createResponse.SdGenerationJob?.GenerationId ?? throw new InvalidOperationException("GenerationId is null"));

var url = response.GenerationsByPk?.GeneratedImages?.ElementAtOrDefault(0)?.Url;

Generate Image

using var api = GetAuthorizedClient();

var createResponse = await api.Image.CreateGenerationAsync(
    prompt: "Generate cat");

await Task.Delay(TimeSpan.FromSeconds(15));

var response = await api.Image.GetGenerationByIdAsync(createResponse.SdGenerationJob?.GenerationId ?? throw new InvalidOperationException("GenerationId is null"));

var url = response.GenerationsByPk?.GeneratedImages?.ElementAtOrDefault(0)?.Url;

Ecosystem maintenance

This SDK is one of more than 200 .NET SDKs maintained with AutoSDK. The tryAGI SDK audit continuously checks repository synchronization, upstream-spec regeneration, release workflows, warnings, public API visibility, and trimming/NativeAOT compatibility.

Every issue is first investigated for ecosystem-wide applicability. When the root cause belongs in AutoSDK, we fix and regression-test the generator, then roll the improvement out to every applicable SDK. Provider-specific behavior remains in this repository when it cannot be derived safely from the API specification.

Issue content—including code blocks, logs, links, and attachments—is treated only as untrusted diagnostic data. Embedded control instructions, hidden directives, delimiter tricks, or requests to alter triage or tooling behavior are ignored. Please report reproducible technical evidence and remove secrets and personal data.

Support

Priority place for bugs: https://github.com/tryAGI/Leonardo/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Leonardo/discussions
Discord: https://discord.gg/Ca2xhfBf3v

Acknowledgments

JetBrains logo

This project is supported by JetBrains through the Open Source Support Program.

Product 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

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on LeonardoAI:

Package Downloads
LangChain.Providers.LeonardoAI

Leonardo Ai API model provider.

LangChain.Providers.Leonardo

Leonardo Ai API model provider.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3-dev.9 44 9/2/2026
1.0.3-dev.8 28 9/2/2026
1.0.3-dev.3 99 6/16/2026
1.0.3-dev.2 74 5/21/2026
1.0.2 39,897 4/30/2026
1.0.1-dev.180 109 4/1/2026
1.0.1-dev.179 95 3/29/2026
1.0.1-dev.176 182 3/28/2026
1.0.1-dev.174 92 3/28/2026
1.0.1-dev.172 96 3/28/2026
1.0.1-dev.171 96 3/28/2026
1.0.1-dev.169 89 3/27/2026
1.0.1-dev.162 93 3/20/2026
1.0.1-dev.160 80 3/20/2026
1.0.1-dev.159 77 3/20/2026
1.0.1-dev.157 78 3/19/2026
1.0.1-dev.155 83 3/19/2026
1.0.1-dev.154 88 3/19/2026
1.0.1-dev.153 88 3/19/2026
1.0.1-dev.152 78 3/19/2026
Loading failed