aisha-ai-official / flux.1dev-uncensored-colossus-v5

  • Public
  • 208 runs
  • L40S
  • Weights
  • License

Run aisha-ai-official/flux.1dev-uncensored-colossus-v5 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 aisha-ai-official/flux.1dev-uncensored-colossus-v5 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 = {
    steps: 30,
    width: 768,
    height: 768,
    prompt: "Portrait of a beauty woman with full dark-purple short hair and purple eyes. She is on a street, wearing casual clothes. She is holding a big sign that says \"Flux Uncensored 💜\" when she winks and smile to the viewer",
    scheduler: "Euler flux beta"
};

const output = await replicate.run("aisha-ai-official/flux.1dev-uncensored-colossus-v5:13f8afae9c06740b24e2d22a0fd7b4889c7381f72b49ce9cefc5fff34bdf51e2", { input });

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