LeonardoAI 1.0.2

dotnet add package LeonardoAI --version 1.0.2
                    
NuGet\Install-Package LeonardoAI -Version 1.0.2
                    
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.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LeonardoAI" Version="1.0.2" />
                    
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.2
                    
#r "nuget: LeonardoAI, 1.0.2"
                    
#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.2
                    
#: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.2
                    
Install as a Cake Addin
#tool nuget:?package=LeonardoAI&version=1.0.2
                    
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;

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.2 4,263 4/30/2026
1.0.1-dev.180 70 4/1/2026
1.0.1-dev.179 59 3/29/2026
1.0.1-dev.176 140 3/28/2026
1.0.1-dev.174 57 3/28/2026
1.0.1-dev.172 57 3/28/2026
1.0.1-dev.171 58 3/28/2026
1.0.1-dev.169 54 3/27/2026
1.0.1-dev.162 49 3/20/2026
1.0.1-dev.160 45 3/20/2026
1.0.1-dev.159 49 3/20/2026
1.0.1-dev.157 47 3/19/2026
1.0.1-dev.155 50 3/19/2026
1.0.1-dev.154 48 3/19/2026
1.0.1-dev.153 52 3/19/2026
1.0.1-dev.152 49 3/19/2026
1.0.1-dev.149 49 3/19/2026
1.0.1-dev.148 52 3/19/2026
1.0.1-dev.147 48 3/19/2026
1.0.1-dev.146 50 3/19/2026
Loading failed