fire/flux

The image generation model tailored for local development and personal use

Mediapipe Blendshape Labeler - Predicts the blend shapes of an image.

For the paper "Structured 3D Latents for Scalable and Versatile 3D Generation".
PartCrafter is a structured 3D mesh generation model that creates multiple parts and objects from a single RGB image.

The image generation model tailored for local development and personal use
Prediction
fire/flux:de30fa90bbfddd50f18ce1a1cf3a427d93711eceab613ec398fab202a3d6303aModelID963vbnvejnrj00ckzpzbwwsderStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedInput
- prompt
- The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.
- go_fast
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- 1:1
- output_format
- webp
- output_quality
- 80
- num_inference_steps
- 8
{ "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fire/flux:de30fa90bbfddd50f18ce1a1cf3a427d93711eceab613ec398fab202a3d6303a", { input: { prompt: "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", go_fast: true, megapixels: "1", num_outputs: 4, aspect_ratio: "1:1", output_format: "webp", output_quality: 80, num_inference_steps: 8 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fire/flux:de30fa90bbfddd50f18ce1a1cf3a427d93711eceab613ec398fab202a3d6303a", input={ "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": True, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "fire/flux:de30fa90bbfddd50f18ce1a1cf3a427d93711eceab613ec398fab202a3d6303a", "input": { "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-12-25T12:23:32.914761Z", "created_at": "2024-12-25T12:15:36.085000Z", "data_removed": false, "error": null, "id": "963vbnvejnrj00ckzpzbwwsder", "input": { "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 }, "logs": "running quantized prediction\nUsing seed: 1137156351\n 0%| | 0/8 [00:00<?, ?it/s]\n 25%|██▌ | 2/8 [00:00<00:01, 3.11it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 2.30it/s]\n 50%|█████ | 4/8 [00:01<00:01, 2.02it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.89it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.82it/s]\n 88%|████████▊ | 7/8 [00:03<00:00, 1.77it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.75it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.90it/s]\n 0%| | 0/8 [00:00<?, ?it/s]\n 12%|█▎ | 1/8 [00:00<00:04, 1.69it/s]\n 25%|██▌ | 2/8 [00:01<00:03, 1.69it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 1.69it/s]\n 50%|█████ | 4/8 [00:02<00:02, 1.69it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.69it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.69it/s]\n 88%|████████▊ | 7/8 [00:04<00:00, 1.69it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.69it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.69it/s]\n 0%| | 0/8 [00:00<?, ?it/s]\n 12%|█▎ | 1/8 [00:00<00:04, 1.69it/s]\n 25%|██▌ | 2/8 [00:01<00:03, 1.69it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 1.69it/s]\n 50%|█████ | 4/8 [00:02<00:02, 1.68it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.68it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.68it/s]\n 88%|████████▊ | 7/8 [00:04<00:00, 1.68it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.69it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.68it/s]\n 0%| | 0/8 [00:00<?, ?it/s]\n 12%|█▎ | 1/8 [00:00<00:04, 1.69it/s]\n 25%|██▌ | 2/8 [00:01<00:03, 1.69it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 1.69it/s]\n 50%|█████ | 4/8 [00:02<00:02, 1.68it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.68it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.68it/s]\n 88%|████████▊ | 7/8 [00:04<00:00, 1.68it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.68it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.68it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 68.710243511, "total_time": 476.829761 }, "output": [ "https://replicate.delivery/yhqm/OvOs4jnjTmaZFlkBrpUqf2iekF0m0HVyDfF4CBslaeuR0q5PB/out-0.webp", "https://replicate.delivery/yhqm/OLOltZLUG9pgD5QA4GSiRosGnWYLPQvphoQ3oUJTxkMRrmfJA/out-1.webp", "https://replicate.delivery/yhqm/JXceGuvtUpR9JSdW2DkDPumdKva8e8ALKp8fWcCjCjHJa18nA/out-2.webp", "https://replicate.delivery/yhqm/10FaFbFjJ4YeYCafC22fbWQKsJI1H2CIonHjUIExdXwIa18nA/out-3.webp" ], "started_at": "2024-12-25T12:22:24.204517Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/qoxq-4zspuhaxakonhvn4e5il2ovumrn4hemgmni26mlvp5i5bvsjncba", "get": "https://api.replicate.com/v1/predictions/963vbnvejnrj00ckzpzbwwsder", "cancel": "https://api.replicate.com/v1/predictions/963vbnvejnrj00ckzpzbwwsder/cancel" }, "version": "de30fa90bbfddd50f18ce1a1cf3a427d93711eceab613ec398fab202a3d6303a" }
Generated inrunning quantized prediction Using seed: 1137156351 0%| | 0/8 [00:00<?, ?it/s] 25%|██▌ | 2/8 [00:00<00:01, 3.11it/s] 38%|███▊ | 3/8 [00:01<00:02, 2.30it/s] 50%|█████ | 4/8 [00:01<00:01, 2.02it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.89it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.82it/s] 88%|████████▊ | 7/8 [00:03<00:00, 1.77it/s] 100%|██████████| 8/8 [00:04<00:00, 1.75it/s] 100%|██████████| 8/8 [00:04<00:00, 1.90it/s] 0%| | 0/8 [00:00<?, ?it/s] 12%|█▎ | 1/8 [00:00<00:04, 1.69it/s] 25%|██▌ | 2/8 [00:01<00:03, 1.69it/s] 38%|███▊ | 3/8 [00:01<00:02, 1.69it/s] 50%|█████ | 4/8 [00:02<00:02, 1.69it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.69it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.69it/s] 88%|████████▊ | 7/8 [00:04<00:00, 1.69it/s] 100%|██████████| 8/8 [00:04<00:00, 1.69it/s] 100%|██████████| 8/8 [00:04<00:00, 1.69it/s] 0%| | 0/8 [00:00<?, ?it/s] 12%|█▎ | 1/8 [00:00<00:04, 1.69it/s] 25%|██▌ | 2/8 [00:01<00:03, 1.69it/s] 38%|███▊ | 3/8 [00:01<00:02, 1.69it/s] 50%|█████ | 4/8 [00:02<00:02, 1.68it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.68it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.68it/s] 88%|████████▊ | 7/8 [00:04<00:00, 1.68it/s] 100%|██████████| 8/8 [00:04<00:00, 1.69it/s] 100%|██████████| 8/8 [00:04<00:00, 1.68it/s] 0%| | 0/8 [00:00<?, ?it/s] 12%|█▎ | 1/8 [00:00<00:04, 1.69it/s] 25%|██▌ | 2/8 [00:01<00:03, 1.69it/s] 38%|███▊ | 3/8 [00:01<00:02, 1.69it/s] 50%|█████ | 4/8 [00:02<00:02, 1.68it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.68it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.68it/s] 88%|████████▊ | 7/8 [00:04<00:00, 1.68it/s] 100%|██████████| 8/8 [00:04<00:00, 1.68it/s] 100%|██████████| 8/8 [00:04<00:00, 1.68it/s] Total safe images: 4 out of 4
Prediction
fire/flux:9c33af1ed518f8a301cc0a30ba372e9a7429b36bfd0c6c04c09a59aa65db0f78ModelIDwvc10ehzcsrj60ckzq49gmdzwrStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedInput
- prompt
- The front view is a young mage with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.
- go_fast
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- 1:1
- output_format
- webp
- output_quality
- 80
- num_inference_steps
- 8
{ "prompt": "The front view is a young mage with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fire/flux:9c33af1ed518f8a301cc0a30ba372e9a7429b36bfd0c6c04c09a59aa65db0f78", { input: { prompt: "The front view is a young mage with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", go_fast: true, megapixels: "1", num_outputs: 4, aspect_ratio: "1:1", output_format: "webp", output_quality: 80, num_inference_steps: 8 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fire/flux:9c33af1ed518f8a301cc0a30ba372e9a7429b36bfd0c6c04c09a59aa65db0f78", input={ "prompt": "The front view is a young mage with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": True, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "fire/flux:9c33af1ed518f8a301cc0a30ba372e9a7429b36bfd0c6c04c09a59aa65db0f78", "input": { "prompt": "The front view is a young mage with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-12-25T12:34:47.748880Z", "created_at": "2024-12-25T12:26:19.366000Z", "data_removed": false, "error": null, "id": "wvc10ehzcsrj60ckzq49gmdzwr", "input": { "prompt": "The front view is a young mage with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless garments with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 8 }, "logs": "running quantized prediction\nUsing seed: 856408955\n 0%| | 0/8 [00:00<?, ?it/s]\n 25%|██▌ | 2/8 [00:00<00:01, 3.09it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 2.28it/s]\n 50%|█████ | 4/8 [00:01<00:01, 2.01it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.88it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.81it/s]\n 88%|████████▊ | 7/8 [00:03<00:00, 1.76it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.73it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.89it/s]\n 0%| | 0/8 [00:00<?, ?it/s]\n 12%|█▎ | 1/8 [00:00<00:04, 1.68it/s]\n 25%|██▌ | 2/8 [00:01<00:03, 1.67it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 1.67it/s]\n 50%|█████ | 4/8 [00:02<00:02, 1.67it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.67it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.67it/s]\n 88%|████████▊ | 7/8 [00:04<00:00, 1.67it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.67it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.67it/s]\n 0%| | 0/8 [00:00<?, ?it/s]\n 12%|█▎ | 1/8 [00:00<00:04, 1.67it/s]\n 25%|██▌ | 2/8 [00:01<00:03, 1.67it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 1.67it/s]\n 50%|█████ | 4/8 [00:02<00:02, 1.67it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.67it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.67it/s]\n 88%|████████▊ | 7/8 [00:04<00:00, 1.67it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.67it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.67it/s]\n 0%| | 0/8 [00:00<?, ?it/s]\n 12%|█▎ | 1/8 [00:00<00:04, 1.67it/s]\n 25%|██▌ | 2/8 [00:01<00:03, 1.67it/s]\n 38%|███▊ | 3/8 [00:01<00:02, 1.67it/s]\n 50%|█████ | 4/8 [00:02<00:02, 1.67it/s]\n 62%|██████▎ | 5/8 [00:02<00:01, 1.67it/s]\n 75%|███████▌ | 6/8 [00:03<00:01, 1.67it/s]\n 88%|████████▊ | 7/8 [00:04<00:00, 1.67it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.67it/s]\n100%|██████████| 8/8 [00:04<00:00, 1.67it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 68.519712736, "total_time": 508.38288 }, "output": [ "https://replicate.delivery/yhqm/k5IhCJ7OeETscqoe3szdPHybNV1DF0tifqkeBeiwnEA78WzfE/out-0.webp", "https://replicate.delivery/yhqm/pxODWwAgcc64HVYSTJP01JIRoEfegc6Gyw8bqh75cBgn3aenA/out-1.webp", "https://replicate.delivery/yhqm/eD11LMxR4GWQPCjwJHvSXoUn5qgNzTyDccKO8pJWXsmzbNfTA/out-2.webp", "https://replicate.delivery/yhqm/rnFriNjIC9IOOZ8SEe4Jm75ZmFiNX8fzrNASVDWcRYun3aenA/out-3.webp" ], "started_at": "2024-12-25T12:33:39.229167Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/qoxq-ai7jgp37dxave4di5uyskbcqtykx3hkugahaipfmjfqrunxsf54q", "get": "https://api.replicate.com/v1/predictions/wvc10ehzcsrj60ckzq49gmdzwr", "cancel": "https://api.replicate.com/v1/predictions/wvc10ehzcsrj60ckzq49gmdzwr/cancel" }, "version": "9c33af1ed518f8a301cc0a30ba372e9a7429b36bfd0c6c04c09a59aa65db0f78" }
Generated inrunning quantized prediction Using seed: 856408955 0%| | 0/8 [00:00<?, ?it/s] 25%|██▌ | 2/8 [00:00<00:01, 3.09it/s] 38%|███▊ | 3/8 [00:01<00:02, 2.28it/s] 50%|█████ | 4/8 [00:01<00:01, 2.01it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.88it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.81it/s] 88%|████████▊ | 7/8 [00:03<00:00, 1.76it/s] 100%|██████████| 8/8 [00:04<00:00, 1.73it/s] 100%|██████████| 8/8 [00:04<00:00, 1.89it/s] 0%| | 0/8 [00:00<?, ?it/s] 12%|█▎ | 1/8 [00:00<00:04, 1.68it/s] 25%|██▌ | 2/8 [00:01<00:03, 1.67it/s] 38%|███▊ | 3/8 [00:01<00:02, 1.67it/s] 50%|█████ | 4/8 [00:02<00:02, 1.67it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.67it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.67it/s] 88%|████████▊ | 7/8 [00:04<00:00, 1.67it/s] 100%|██████████| 8/8 [00:04<00:00, 1.67it/s] 100%|██████████| 8/8 [00:04<00:00, 1.67it/s] 0%| | 0/8 [00:00<?, ?it/s] 12%|█▎ | 1/8 [00:00<00:04, 1.67it/s] 25%|██▌ | 2/8 [00:01<00:03, 1.67it/s] 38%|███▊ | 3/8 [00:01<00:02, 1.67it/s] 50%|█████ | 4/8 [00:02<00:02, 1.67it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.67it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.67it/s] 88%|████████▊ | 7/8 [00:04<00:00, 1.67it/s] 100%|██████████| 8/8 [00:04<00:00, 1.67it/s] 100%|██████████| 8/8 [00:04<00:00, 1.67it/s] 0%| | 0/8 [00:00<?, ?it/s] 12%|█▎ | 1/8 [00:00<00:04, 1.67it/s] 25%|██▌ | 2/8 [00:01<00:03, 1.67it/s] 38%|███▊ | 3/8 [00:01<00:02, 1.67it/s] 50%|█████ | 4/8 [00:02<00:02, 1.67it/s] 62%|██████▎ | 5/8 [00:02<00:01, 1.67it/s] 75%|███████▌ | 6/8 [00:03<00:01, 1.67it/s] 88%|████████▊ | 7/8 [00:04<00:00, 1.67it/s] 100%|██████████| 8/8 [00:04<00:00, 1.67it/s] 100%|██████████| 8/8 [00:04<00:00, 1.67it/s] Total safe images: 4 out of 4
Prediction
fire/flux:6fdceb0439f8a5ea87feed67b4e59e3a0310f2cbfd5d004a0d3edbbc798b3550ModelID5dd9j69n2xrj20crcegs2ep4hcStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedby @fireInput
- seed
- 0
- prompt
- The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless swimsuit with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.
- go_fast
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- 2:1
- output_format
- webp
- output_quality
- 80
- num_inference_steps
- 4
{ "seed": 0, "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless swimsuit with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "2:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 4 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fire/flux:6fdceb0439f8a5ea87feed67b4e59e3a0310f2cbfd5d004a0d3edbbc798b3550", { input: { seed: 0, prompt: "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless swimsuit with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", go_fast: true, megapixels: "1", num_outputs: 4, aspect_ratio: "2:1", output_format: "webp", output_quality: 80, num_inference_steps: 4 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fire/flux:6fdceb0439f8a5ea87feed67b4e59e3a0310f2cbfd5d004a0d3edbbc798b3550", input={ "seed": 0, "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless swimsuit with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": True, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "2:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 4 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fire/flux using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "fire/flux:6fdceb0439f8a5ea87feed67b4e59e3a0310f2cbfd5d004a0d3edbbc798b3550", "input": { "seed": 0, "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless swimsuit with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "2:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 4 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-08-01T03:28:53.872444Z", "created_at": "2025-08-01T03:16:06.039000Z", "data_removed": false, "error": null, "id": "5dd9j69n2xrj20crcegs2ep4hc", "input": { "seed": 0, "prompt": "The front view is a young woman with realistic adult proportions, featuring long legs, a slender waist, and balanced shoulders. She has short, slightly messy brown hair and expressive brown eyes. The medium bust is dressed in simple, armless swimsuit with a clean and flowing silhouette. She is standing with her arms outstretched to the sides, palms facing downwards, and her legs slightly apart with a slight bend in her knees. Her hands and legs are equally outstretched to the sides, her palms facing downwards, and her knees apart, barefoot apart. She is wearing simple, flat shoes. Rendered in a clean anime style with soft shading, focusing on smooth shapes, proper proportions, and balanced anatomy. The background is beige, with soft lighting emphasizing her features and overall form. This is a front view. There are multiple consistent views.", "go_fast": true, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "2:1", "output_format": "webp", "output_quality": 80, "num_inference_steps": 4 }, "logs": "running quantized prediction\nUsing seed: 0\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:00, 7.46it/s]\n 50%|█████ | 2/4 [00:01<00:01, 1.29it/s]\n 75%|███████▌ | 3/4 [00:02<00:00, 1.02it/s]\n100%|██████████| 4/4 [00:03<00:00, 1.07s/it]\n100%|██████████| 4/4 [00:03<00:00, 1.05it/s]\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:01<00:03, 1.22s/it]\n 50%|█████ | 2/4 [00:02<00:02, 1.22s/it]\n 75%|███████▌ | 3/4 [00:03<00:01, 1.22s/it]\n100%|██████████| 4/4 [00:04<00:00, 1.22s/it]\n100%|██████████| 4/4 [00:04<00:00, 1.22s/it]\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:01<00:03, 1.22s/it]\n 50%|█████ | 2/4 [00:02<00:02, 1.23s/it]\n 75%|███████▌ | 3/4 [00:03<00:01, 1.23s/it]\n100%|██████████| 4/4 [00:04<00:00, 1.23s/it]\n100%|██████████| 4/4 [00:04<00:00, 1.23s/it]\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:01<00:03, 1.22s/it]\n 50%|█████ | 2/4 [00:02<00:02, 1.23s/it]\n 75%|███████▌ | 3/4 [00:03<00:01, 1.23s/it]\n100%|██████████| 4/4 [00:04<00:00, 1.23s/it]\n100%|██████████| 4/4 [00:04<00:00, 1.23s/it]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 191.912509678, "total_time": 767.833444 }, "output": [ "https://replicate.delivery/yhqm/aYUiFUCQFiJAE5FKSyG0TSM9F7BuDMWFWHXmnJAJSbddmnRF/out-0.webp", "https://replicate.delivery/yhqm/fcpfNEzviihCPkeJJKnD7nNKEAHny0ML0VaCniK133Gqz8MqA/out-1.webp", "https://replicate.delivery/yhqm/yLqnBWLx8fWabCZeWXqjMywhegS3fKvoKGL1D6JHZCfqOzzoC/out-2.webp", "https://replicate.delivery/yhqm/5sbdf09YFnzMa6c4bQEe0MEHC1aE9rEdhPnldetTsuhrz8MqA/out-3.webp" ], "started_at": "2025-08-01T03:25:41.959934Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/qoxq-5qbmsncul3xnx6kotzw6qyvcmvenw7ohainx2gy7jebpqcp5znna", "get": "https://api.replicate.com/v1/predictions/5dd9j69n2xrj20crcegs2ep4hc", "cancel": "https://api.replicate.com/v1/predictions/5dd9j69n2xrj20crcegs2ep4hc/cancel" }, "version": "6fdceb0439f8a5ea87feed67b4e59e3a0310f2cbfd5d004a0d3edbbc798b3550" }
Generated inrunning quantized prediction Using seed: 0 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:00, 7.46it/s] 50%|█████ | 2/4 [00:01<00:01, 1.29it/s] 75%|███████▌ | 3/4 [00:02<00:00, 1.02it/s] 100%|██████████| 4/4 [00:03<00:00, 1.07s/it] 100%|██████████| 4/4 [00:03<00:00, 1.05it/s] 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:01<00:03, 1.22s/it] 50%|█████ | 2/4 [00:02<00:02, 1.22s/it] 75%|███████▌ | 3/4 [00:03<00:01, 1.22s/it] 100%|██████████| 4/4 [00:04<00:00, 1.22s/it] 100%|██████████| 4/4 [00:04<00:00, 1.22s/it] 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:01<00:03, 1.22s/it] 50%|█████ | 2/4 [00:02<00:02, 1.23s/it] 75%|███████▌ | 3/4 [00:03<00:01, 1.23s/it] 100%|██████████| 4/4 [00:04<00:00, 1.23s/it] 100%|██████████| 4/4 [00:04<00:00, 1.23s/it] 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:01<00:03, 1.22s/it] 50%|█████ | 2/4 [00:02<00:02, 1.23s/it] 75%|███████▌ | 3/4 [00:03<00:01, 1.23s/it] 100%|██████████| 4/4 [00:04<00:00, 1.23s/it] 100%|██████████| 4/4 [00:04<00:00, 1.23s/it] Total safe images: 4 out of 4
Want to make some of these yourself?
Run this model