lucataco / flux-schnell-lora

FLUX.1-Schnell LoRA Explorer

  • Public
  • 889.5K runs
  • A100 (80GB)
  • GitHub
  • Weights
  • License

Run lucataco/flux-schnell-lora with an API

Use one of our client libraries to get started quickly.

Set the REPLICATE_API_TOKEN environment variable

export REPLICATE_API_TOKEN=<paste-your-token-here>

Learn more about authentication

Install Replicate’s Node.js client library

npm install replicate
Learn more about setup

Run lucataco/flux-schnell-lora using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.

import Replicate from "replicate";
const replicate = new Replicate();

const input = {
    prompt: "a beautiful castle frstingln illustration",
    hf_lora: "alvdansen/frosting_lane_flux"
};

const output = await replicate.run("lucataco/flux-schnell-lora:2a6b576af31790b470f0a8442e1e9791213fa13799cbb65a9fc1436e96389574", { input });

import { writeFile } from "node:fs/promises";
for (const [index, item] of Object.entries(output)) {
  await writeFile(`output_${index}.webp`, item);
}
//=> output_0.webp written to disk
Learn more