- Fully generated C# SDK based on official Replicate 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
 
Examples and documentation can be found here: https://tryagi.github.io/Replicate/
using Replicate;
using var api = new ReplicateApi(apiKey);
var response = await api.ModelsPredictionsCreateAsync(
    input: new PredictionRequestInput
    {
        AdditionalProperties = new Dictionary<string, object>
        {
            ["seed"] = Random.Shared.Next(0, 1000000),
            ["steps"] = 25,
            ["prompt"] = "a female, european, young adult, fit body, wavy acid orange hair, wearing open swimsuit, sea in the background.",
            ["guidance"] = 3.5,
            ["interval"] = 3,
            ["aspect_ratio"] = "16:9",
            ["safety_tolerance"] = 5,
        },
    },
    prefer: "wait=60",
    modelOwner: "black-forest-labs",
    modelName: "flux-pro");
        
var endResponse = await response.WaitUntilSuccessfulAsync(api);
Console.WriteLine($@"Seed: {endResponse.Input?.Seed}.
Image available at:\n{endResponse.Output}");Priority place for bugs: https://github.com/tryAGI/Replicate/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Replicate/discussions
Discord: https://discord.gg/Ca2xhfBf3v
This project is supported by JetBrains through the Open Source Support Program.
This project is supported by CodeRabbit through the Open Source Support Program.

