Reference
S

Stable Image Ultra

Stable Image Ultra, an image model from Stability.
imageModelOverride: { model: "stable-image-ultra" }
Stability·Released 2024
Pricing
Per generation
$0.14
Per generation
$0.080
Specifications
Aspect ratios
9
Released
2024
Parameters
Model options, passed in imageModelOverride.config.
ParameterTypeDefaultRange / options
negative_prompt
A blurb of text describing what you do not wish to see in the output image.
Text
aspect_ratioSelect1:11:12:33:24:55:49:16+3
seed
A specific value that is used to guide the 'randomness' of the generation. Omit this parameter or pass 0 to use a random seed.
Seed
output_formatSelectpngjpegpngwebp
Use this model
await mindstudio.generateImage({
  prompt: "...",
  imageModelOverride: {
    model: "stable-image-ultra",
    config: {
      aspect_ratio: "1:1",
      output_format: "png",
    },
  },
});