Skip to content

tryAGI/Luma

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Luma

Nuget package dotnet License: MIT Discord

Features 🔥

  • Fully generated C# SDK based on official Luma 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
  • DreamMachine API support

Usage

using Luma;

using var api = new LumaClient(apiKey);

Generation generation = await client.Generations.CreateGenerationAsync(
    prompt: "No camera movement. The girl just stands there and smiles. The waves in the background move a little.",
    aspectRatio: AspectRatio.x4_3,
    loop: false,
    keyframes: new Keyframes
    {
        Frame0 = new ImageReference
        {
            Url = "https://i.ibb.co/WFJyPcR/cool-girl.png",
        },
        // Frame1 = new GenerationReference
        // {
        //     Id = Guid.Empty,
        // },
    });

while (generation.State != State.Failed && generation.State != State.Completed)
{
    await Task.Delay(TimeSpan.FromSeconds(5), cancellationToken);
    
    generation = await client.Generations.GetGenerationAsync(
        id: generation.Id?.Value.ToString(),
        cancellationToken: cancellationToken);
}

Console.WriteLine($"Id: {generation.Id}");
Console.WriteLine($"State: {generation.State}");
Console.WriteLine($"FailureReason: {generation.FailureReason}");
Console.WriteLine($"Video URL: {generation.Assets?.Video}");
a76de630-97c1-4308-90bd-1471fa4609ea_raw_video_0.mp4_video0b68e264e5a22401ba654e05b5ed86d77.mp4

Support

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

Acknowledgments

JetBrains logo

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

CodeRabbit logo

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