We’re excited to announce that Stable Diffusion 3.5 , the latest and most powerful text-to-image model from Stability AI, is now available on Replicate. It brings significant improvements in image quality, better prompt understanding, and supports a wide range of artistic styles. Stable Diffusion 3.5 comes in three variants: Stable Diffusion 3.5 Large generates the highest quality images Stable Diffusion 3.5 Large Turbo is almost as high quality, but much faster Stable Diffusion 3.5 Medium is a smaller model that can be run on the cloud as well as on consumer GPUs You can generate images using Stable Diffusion 3.5 right away. Try this in Python: Copy import replicate output = replicate.run( "stability-ai/stable-diffusion-3.5-large" , input = { "prompt" : "A watercolor painting of a futuristic city skyline at dawn" } ) print (output.url) Or use JavaScript: Copy import Replicate from "replicate" ; const replicate = new Replicate ({ auth: process.env. REPLICATE_API_TOKEN , }); const [ output ] = await replicate. run ( "stability-ai/stable-diffusion-3.5-large" , { input: { …