stability-ai
/
stable-diffusion-3
A text-to-image model with greatly improved performance in image quality, typography, complex prompt understanding, and resource-efficiency
Prediction
stability-ai/stable-diffusion-3Official modelIDc65yknkf4xrm60cgapp9b7e55cStatusSucceededSourceWebTotal durationCreatedby @replicateInput
- cfg
- 4.5
- seed
- 2500519275
- prompt
- a 3D render of a wizard holding a sign saying "SD3"
- aspect_ratio
- 1:1
- output_format
- webp
- output_quality
- 79
- negative_prompt
{ "cfg": 4.5, "seed": 2500519275, "prompt": "a 3D render of a wizard holding a sign saying \"SD3\"", "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 79, "negative_prompt": "" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run stability-ai/stable-diffusion-3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const input = { cfg: 4.5, seed: 2500519275, prompt: "a 3D render of a wizard holding a sign saying \"SD3\"", aspect_ratio: "1:1", output_format: "webp", output_quality: 79, negative_prompt: "" }; const output = await replicate.run("stability-ai/stable-diffusion-3", { input }); // 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 stability-ai/stable-diffusion-3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stability-ai/stable-diffusion-3", input={ "cfg": 4.5, "seed": 2500519275, "prompt": "a 3D render of a wizard holding a sign saying \"SD3\"", "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 79, "negative_prompt": "" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run stability-ai/stable-diffusion-3 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 $'{ "input": { "cfg": 4.5, "seed": 2500519275, "prompt": "a 3D render of a wizard holding a sign saying \\"SD3\\"", "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 79, "negative_prompt": "" } }' \ https://api.replicate.com/v1/models/stability-ai/stable-diffusion-3/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-06-26T17:51:25.135441Z", "created_at": "2024-06-26T17:51:22.407000Z", "data_removed": false, "error": null, "id": "c65yknkf4xrm60cgapp9b7e55c", "input": { "cfg": 4.5, "seed": 2500519275, "prompt": "a 3D render of a wizard holding a sign saying \"SD3\"", "aspect_ratio": "1:1", "output_format": "webp", "output_quality": 79, "negative_prompt": "" }, "logs": "Seed set to: 2500519275\nRunning workflow\ngot prompt\nExecuting node 6, title: CLIP Text Encode (Prompt), class type: CLIPTextEncode\nExecuting node 271, title: KSampler, class type: KSampler\n 0%| | 0/28 [00:00<?, ?it/s]\n 7%|▋ | 2/28 [00:00<00:01, 14.80it/s]\n 14%|█▍ | 4/28 [00:00<00:01, 14.78it/s]\n 21%|██▏ | 6/28 [00:00<00:01, 14.77it/s]\n 29%|██▊ | 8/28 [00:00<00:01, 14.77it/s]\n 36%|███▌ | 10/28 [00:00<00:01, 14.77it/s]\n 43%|████▎ | 12/28 [00:00<00:01, 14.77it/s]\n 50%|█████ | 14/28 [00:00<00:00, 14.76it/s]\n 57%|█████▋ | 16/28 [00:01<00:00, 14.73it/s]\n 64%|██████▍ | 18/28 [00:01<00:00, 14.71it/s]\n 71%|███████▏ | 20/28 [00:01<00:00, 14.72it/s]\n 79%|███████▊ | 22/28 [00:01<00:00, 14.71it/s]\n 86%|████████▌ | 24/28 [00:01<00:00, 14.71it/s]\n 93%|█████████▎| 26/28 [00:01<00:00, 14.73it/s]\n100%|██████████| 28/28 [00:01<00:00, 14.76it/s]\n100%|██████████| 28/28 [00:01<00:00, 14.74it/s]\nExecuting node 231, title: VAE Decode, class type: VAEDecode\nExecuting node 273, title: Save Image, class type: SaveImage\nPrompt executed in 2.23 seconds\noutputs: {'273': {'images': [{'filename': 'R8_SD3_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nR8_SD3_00001_.png", "metrics": { "total_time": 2.728441, "image_count": 1, "predict_time": 2.708087996 }, "output": [ "https://replicate.delivery/yhqm/Nsa8bO9MzMYqIx7MUjcAA4EbxlgQm9od3PcupAYqCnMHHowE/R8_SD3_00001_.webp" ], "started_at": "2024-06-26T17:51:22.427353Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/c65yknkf4xrm60cgapp9b7e55c", "cancel": "https://api.replicate.com/v1/predictions/c65yknkf4xrm60cgapp9b7e55c/cancel" }, "version": "hidden" }
Generated inSeed set to: 2500519275 Running workflow got prompt Executing node 6, title: CLIP Text Encode (Prompt), class type: CLIPTextEncode Executing node 271, title: KSampler, class type: KSampler 0%| | 0/28 [00:00<?, ?it/s] 7%|▋ | 2/28 [00:00<00:01, 14.80it/s] 14%|█▍ | 4/28 [00:00<00:01, 14.78it/s] 21%|██▏ | 6/28 [00:00<00:01, 14.77it/s] 29%|██▊ | 8/28 [00:00<00:01, 14.77it/s] 36%|███▌ | 10/28 [00:00<00:01, 14.77it/s] 43%|████▎ | 12/28 [00:00<00:01, 14.77it/s] 50%|█████ | 14/28 [00:00<00:00, 14.76it/s] 57%|█████▋ | 16/28 [00:01<00:00, 14.73it/s] 64%|██████▍ | 18/28 [00:01<00:00, 14.71it/s] 71%|███████▏ | 20/28 [00:01<00:00, 14.72it/s] 79%|███████▊ | 22/28 [00:01<00:00, 14.71it/s] 86%|████████▌ | 24/28 [00:01<00:00, 14.71it/s] 93%|█████████▎| 26/28 [00:01<00:00, 14.73it/s] 100%|██████████| 28/28 [00:01<00:00, 14.76it/s] 100%|██████████| 28/28 [00:01<00:00, 14.74it/s] Executing node 231, title: VAE Decode, class type: VAEDecode Executing node 273, title: Save Image, class type: SaveImage Prompt executed in 2.23 seconds outputs: {'273': {'images': [{'filename': 'R8_SD3_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== R8_SD3_00001_.png
Prediction
stability-ai/stable-diffusion-3Official modelID9qcv99vaxdrm00cgapvbt3fh4cStatusSucceededSourceWebTotal durationCreatedby @replicateInput
- cfg
- 3.5
- prompt
- a photo of vibrant artistic graffiti on a wall saying "SD3 medium"
- aspect_ratio
- 3:2
- output_format
- webp
- output_quality
- 90
- negative_prompt
{ "cfg": 3.5, "prompt": "a photo of vibrant artistic graffiti on a wall saying \"SD3 medium\"", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 90, "negative_prompt": "" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run stability-ai/stable-diffusion-3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const input = { cfg: 3.5, prompt: "a photo of vibrant artistic graffiti on a wall saying \"SD3 medium\"", aspect_ratio: "3:2", output_format: "webp", output_quality: 90, negative_prompt: "" }; const output = await replicate.run("stability-ai/stable-diffusion-3", { input }); // 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 stability-ai/stable-diffusion-3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stability-ai/stable-diffusion-3", input={ "cfg": 3.5, "prompt": "a photo of vibrant artistic graffiti on a wall saying \"SD3 medium\"", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 90, "negative_prompt": "" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run stability-ai/stable-diffusion-3 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 $'{ "input": { "cfg": 3.5, "prompt": "a photo of vibrant artistic graffiti on a wall saying \\"SD3 medium\\"", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 90, "negative_prompt": "" } }' \ https://api.replicate.com/v1/models/stability-ai/stable-diffusion-3/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-06-26T18:02:19Z", "created_at": "2024-06-26T18:02:16.683000Z", "data_removed": false, "error": "", "id": "9qcv99vaxdrm00cgapvbt3fh4c", "input": { "cfg": 3.5, "prompt": "a photo of vibrant artistic graffiti on a wall saying \"SD3 medium\"", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 90, "negative_prompt": "" }, "logs": "Seed set to: 448433150\r\nRunning workflow\r\ngot prompt\r\nExecuting node 6, title: CLIP Text Encode (Prompt), class type: CLIPTextEncode\r\nExecuting node 71, title: CLIP Text Encode (Negative Prompt), class type: CLIPTextEncode\r\nExecuting node 67, title: ConditioningZeroOut, class type: ConditioningZeroOut\r\nExecuting node 68, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange\r\nExecuting node 70, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange\r\nExecuting node 69, title: Conditioning (Combine), class type: ConditioningCombine\r\nExecuting node 135, title: EmptySD3LatentImage, class type: EmptySD3LatentImage\r\nExecuting node 271, title: KSampler, class type: KSampler\r\n 0%| | 0/28 [00:00<?, ?it/s]\r\n 7%|▋ | 2/28 [00:00<00:01, 14.59it/s]\r\n 14%|█▍ | 4/28 [00:00<00:01, 15.14it/s]\r\n 21%|██▏ | 6/28 [00:00<00:01, 15.31it/s]\r\n 29%|██▊ | 8/28 [00:00<00:01, 15.40it/s]\r\n 36%|███▌ | 10/28 [00:00<00:01, 15.44it/s]\r\n 43%|████▎ | 12/28 [00:00<00:01, 15.47it/s]\r\n 50%|█████ | 14/28 [00:00<00:00, 15.48it/s]\r\n 57%|█████▋ | 16/28 [00:01<00:00, 15.50it/s]\r\n 64%|██████▍ | 18/28 [00:01<00:00, 15.51it/s]\r\n 71%|███████▏ | 20/28 [00:01<00:00, 15.51it/s]\r\n 79%|███████▊ | 22/28 [00:01<00:00, 15.52it/s]\r\n 86%|████████▌ | 24/28 [00:01<00:00, 15.52it/s]\r\n 93%|█████████▎| 26/28 [00:01<00:00, 15.51it/s]\r\n100%|██████████| 28/28 [00:01<00:00, 15.49it/s]\r\n100%|██████████| 28/28 [00:01<00:00, 15.44it/s]\r\nExecuting node 231, title: VAE Decode, class type: VAEDecode\r\nExecuting node 273, title: Save Image, class type: SaveImage\r\nPrompt executed in 2.28 seconds\r\noutputs: {'273': {'images': [{'filename': 'R8_SD3_00001_.png', 'subfolder': '', 'type': 'output'}]}}\r\n====================================\r\nR8_SD3_00001_.png", "metrics": { "total_time": 2.317, "image_count": 1, "predict_time": 2.781864785 }, "output": [ "https://replicate.delivery/yhqm/i4mS31BVDBYVIF0ol6UV2dwHwuztMDbsnlVJBeJ75ViVTQhJA/R8_SD3_00001_.webp" ], "started_at": "2024-06-26T18:02:16Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/9qcv99vaxdrm00cgapvbt3fh4c", "cancel": "https://api.replicate.com/v1/predictions/9qcv99vaxdrm00cgapvbt3fh4c/cancel" }, "version": "hidden" }
Generated inSeed set to: 448433150 Running workflow got prompt Executing node 6, title: CLIP Text Encode (Prompt), class type: CLIPTextEncode Executing node 71, title: CLIP Text Encode (Negative Prompt), class type: CLIPTextEncode Executing node 67, title: ConditioningZeroOut, class type: ConditioningZeroOut Executing node 68, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange Executing node 70, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange Executing node 69, title: Conditioning (Combine), class type: ConditioningCombine Executing node 135, title: EmptySD3LatentImage, class type: EmptySD3LatentImage Executing node 271, title: KSampler, class type: KSampler 0%| | 0/28 [00:00<?, ?it/s] 7%|▋ | 2/28 [00:00<00:01, 14.59it/s] 14%|█▍ | 4/28 [00:00<00:01, 15.14it/s] 21%|██▏ | 6/28 [00:00<00:01, 15.31it/s] 29%|██▊ | 8/28 [00:00<00:01, 15.40it/s] 36%|███▌ | 10/28 [00:00<00:01, 15.44it/s] 43%|████▎ | 12/28 [00:00<00:01, 15.47it/s] 50%|█████ | 14/28 [00:00<00:00, 15.48it/s] 57%|█████▋ | 16/28 [00:01<00:00, 15.50it/s] 64%|██████▍ | 18/28 [00:01<00:00, 15.51it/s] 71%|███████▏ | 20/28 [00:01<00:00, 15.51it/s] 79%|███████▊ | 22/28 [00:01<00:00, 15.52it/s] 86%|████████▌ | 24/28 [00:01<00:00, 15.52it/s] 93%|█████████▎| 26/28 [00:01<00:00, 15.51it/s] 100%|██████████| 28/28 [00:01<00:00, 15.49it/s] 100%|██████████| 28/28 [00:01<00:00, 15.44it/s] Executing node 231, title: VAE Decode, class type: VAEDecode Executing node 273, title: Save Image, class type: SaveImage Prompt executed in 2.28 seconds outputs: {'273': {'images': [{'filename': 'R8_SD3_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== R8_SD3_00001_.png
Prediction
stability-ai/stable-diffusion-3Official modelID75s9q4jsg1rm40cgapvth20614StatusSucceededSourceWebTotal durationCreatedby @replicateInput
- cfg
- 4.5
- seed
- 1895223100
- prompt
- an epic logo for "STABLE DIFFUSION 3", depicting a space wizard in the style of a nebula background with blue and purple neon text on a white glowing background floating over a mountain range
- aspect_ratio
- 3:2
- output_format
- webp
- output_quality
- 79
- negative_prompt
- watermark
{ "cfg": 4.5, "seed": 1895223100, "prompt": "an epic logo for \"STABLE DIFFUSION 3\", depicting a space wizard in the style of a nebula background with blue and purple neon text on a white glowing background floating over a mountain range", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 79, "negative_prompt": "watermark" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run stability-ai/stable-diffusion-3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const input = { cfg: 4.5, seed: 1895223100, prompt: "an epic logo for \"STABLE DIFFUSION 3\", depicting a space wizard in the style of a nebula background with blue and purple neon text on a white glowing background floating over a mountain range", aspect_ratio: "3:2", output_format: "webp", output_quality: 79, negative_prompt: "watermark" }; const output = await replicate.run("stability-ai/stable-diffusion-3", { input }); // 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 stability-ai/stable-diffusion-3 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stability-ai/stable-diffusion-3", input={ "cfg": 4.5, "seed": 1895223100, "prompt": "an epic logo for \"STABLE DIFFUSION 3\", depicting a space wizard in the style of a nebula background with blue and purple neon text on a white glowing background floating over a mountain range", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 79, "negative_prompt": "watermark" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run stability-ai/stable-diffusion-3 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 $'{ "input": { "cfg": 4.5, "seed": 1895223100, "prompt": "an epic logo for \\"STABLE DIFFUSION 3\\", depicting a space wizard in the style of a nebula background with blue and purple neon text on a white glowing background floating over a mountain range", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 79, "negative_prompt": "watermark" } }' \ https://api.replicate.com/v1/models/stability-ai/stable-diffusion-3/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2024-06-26T18:03:20.550132Z", "created_at": "2024-06-26T18:03:17.760000Z", "data_removed": false, "error": null, "id": "75s9q4jsg1rm40cgapvth20614", "input": { "cfg": 4.5, "seed": 1895223100, "prompt": "an epic logo for \"STABLE DIFFUSION 3\", depicting a space wizard in the style of a nebula background with blue and purple neon text on a white glowing background floating over a mountain range", "aspect_ratio": "3:2", "output_format": "webp", "output_quality": 79, "negative_prompt": "watermark" }, "logs": "Seed set to: 1895223100\nRunning workflow\ngot prompt\nExecuting node 6, title: CLIP Text Encode (Prompt), class type: CLIPTextEncode\nExecuting node 71, title: CLIP Text Encode (Negative Prompt), class type: CLIPTextEncode\nExecuting node 67, title: ConditioningZeroOut, class type: ConditioningZeroOut\nExecuting node 68, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange\nExecuting node 70, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange\nExecuting node 69, title: Conditioning (Combine), class type: ConditioningCombine\nExecuting node 135, title: EmptySD3LatentImage, class type: EmptySD3LatentImage\nExecuting node 271, title: KSampler, class type: KSampler\n 0%| | 0/28 [00:00<?, ?it/s]\n 7%|▋ | 2/28 [00:00<00:01, 15.44it/s]\n 14%|█▍ | 4/28 [00:00<00:01, 15.45it/s]\n 21%|██▏ | 6/28 [00:00<00:01, 15.45it/s]\n 29%|██▊ | 8/28 [00:00<00:01, 15.46it/s]\n 36%|███▌ | 10/28 [00:00<00:01, 15.44it/s]\n 43%|████▎ | 12/28 [00:00<00:01, 15.45it/s]\n 50%|█████ | 14/28 [00:00<00:00, 15.46it/s]\n 57%|█████▋ | 16/28 [00:01<00:00, 15.42it/s]\n 64%|██████▍ | 18/28 [00:01<00:00, 15.43it/s]\n 71%|███████▏ | 20/28 [00:01<00:00, 15.44it/s]\n 79%|███████▊ | 22/28 [00:01<00:00, 15.45it/s]\n 86%|████████▌ | 24/28 [00:01<00:00, 15.43it/s]\n 93%|█████████▎| 26/28 [00:01<00:00, 15.45it/s]\n100%|██████████| 28/28 [00:01<00:00, 15.46it/s]\n100%|██████████| 28/28 [00:01<00:00, 15.45it/s]\nExecuting node 231, title: VAE Decode, class type: VAEDecode\nExecuting node 273, title: Save Image, class type: SaveImage\nPrompt executed in 2.27 seconds\noutputs: {'273': {'images': [{'filename': 'R8_SD3_00001_.png', 'subfolder': '', 'type': 'output'}]}}\n====================================\nR8_SD3_00001_.png", "metrics": { "total_time": 2.790132, "image_count": 1, "predict_time": 2.775932849 }, "output": [ "https://replicate.delivery/yhqm/3oy3SWM58fXhGq7KSiX7eSLoZvL41X8IhEjejDy8I0ejeEUYC/R8_SD3_00001_.webp" ], "started_at": "2024-06-26T18:03:17.774199Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/75s9q4jsg1rm40cgapvth20614", "cancel": "https://api.replicate.com/v1/predictions/75s9q4jsg1rm40cgapvth20614/cancel" }, "version": "hidden" }
Generated inSeed set to: 1895223100 Running workflow got prompt Executing node 6, title: CLIP Text Encode (Prompt), class type: CLIPTextEncode Executing node 71, title: CLIP Text Encode (Negative Prompt), class type: CLIPTextEncode Executing node 67, title: ConditioningZeroOut, class type: ConditioningZeroOut Executing node 68, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange Executing node 70, title: ConditioningSetTimestepRange, class type: ConditioningSetTimestepRange Executing node 69, title: Conditioning (Combine), class type: ConditioningCombine Executing node 135, title: EmptySD3LatentImage, class type: EmptySD3LatentImage Executing node 271, title: KSampler, class type: KSampler 0%| | 0/28 [00:00<?, ?it/s] 7%|▋ | 2/28 [00:00<00:01, 15.44it/s] 14%|█▍ | 4/28 [00:00<00:01, 15.45it/s] 21%|██▏ | 6/28 [00:00<00:01, 15.45it/s] 29%|██▊ | 8/28 [00:00<00:01, 15.46it/s] 36%|███▌ | 10/28 [00:00<00:01, 15.44it/s] 43%|████▎ | 12/28 [00:00<00:01, 15.45it/s] 50%|█████ | 14/28 [00:00<00:00, 15.46it/s] 57%|█████▋ | 16/28 [00:01<00:00, 15.42it/s] 64%|██████▍ | 18/28 [00:01<00:00, 15.43it/s] 71%|███████▏ | 20/28 [00:01<00:00, 15.44it/s] 79%|███████▊ | 22/28 [00:01<00:00, 15.45it/s] 86%|████████▌ | 24/28 [00:01<00:00, 15.43it/s] 93%|█████████▎| 26/28 [00:01<00:00, 15.45it/s] 100%|██████████| 28/28 [00:01<00:00, 15.46it/s] 100%|██████████| 28/28 [00:01<00:00, 15.45it/s] Executing node 231, title: VAE Decode, class type: VAEDecode Executing node 273, title: Save Image, class type: SaveImage Prompt executed in 2.27 seconds outputs: {'273': {'images': [{'filename': 'R8_SD3_00001_.png', 'subfolder': '', 'type': 'output'}]}} ==================================== R8_SD3_00001_.png
Want to make some of these yourself?
Run this model