Closed raymerjacque closed 1 year ago
You can upscale one of the four images generated depending on your choice. You could use the upscale method from the mid-journey.
python
from midjourney import Midjourney
midjourney = Midjourney( api_key="API_KEY", callback_uri="")
seed = midjourney.imagine("Monotone illustration of cat in style of Shiny Kistch pop art")
upscale = midjourney.upscale( task_id=seed, position="2")
print(upscale)
can you select and save one of the 4 generated images instead of all 4 ?