Update, May 2025: Ideogram has released their v3 series of models, including Turbo, Balanced, and Quality variants. Read more about Ideogram v3 here . Today Ideogram are launching their new inpainting feature for Ideogram v2. We’re thrilled to be partnering with Ideogram, to bring Ideogram v2 to Replicate’s API . We’ve been blown away by the quality of this model. It’s really good. Ideogram v2 comes in two flavors: ideogram-ai/ideogram-v2 - Produces the best image quality. ideogram-ai/ideogram-v2-turbo - Still high quality, but faster. For example, here is a herd of dinosaurs grazing on the Bucolic Green Hills : Ideogram v2 is not just for inpainting: you can use it to generate any type of image. In our tests, we found it to be particularly good at generating text . Run Ideogram v2 with an API on Replicate To inpaint an image with the Replicate Python client , run Copy import replicate from pathlib import Path output = replicate.run( "ideogram-ai/ideogram-v2" , input = { "prompt" : "Dinosaurs grazing on a hill" , "image" : Path( "desktop.png" ), …