ghostofpokemon
/
sdxl-family-guy-faces
- Public
- 135 runs
-
L40S
- SDXL fine-tune
Run ghostofpokemon/sdxl-family-guy-faces 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
Run ghostofpokemon/sdxl-family-guy-faces 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 = {
height: 576,
prompt: "a baby alien in the driveway in the style of Family Guy, clean, simple, minimal",
num_outputs: 2,
negative_prompt: "ugly, broken "
};
const output = await replicate.run("ghostofpokemon/sdxl-family-guy-faces:b8d8c768bc60dc86a85b0af9ae25c7d6f09716649d98aab2f0c75ab7bf1719b9", { input });
import { writeFile } from "node:fs/promises";
for (const [index, item] of Object.entries(output)) {
await writeFile(`output_${index}.png`, item);
}
//=> output_0.png, output_1.png written to disk