Skip to main content
ModelRunner
boogu avatar

boogu / boogu-image

Generate high-quality images from a text prompt with fine-grained control over the CFG guidance schedule.

0.04 per megapixel of image

Model Input

Input

The text prompt describing the image to generate.

The size of the generated image. Use a preset string (e.g. 'landscape_16_9') or a custom {width, height} object.

Min: 1 - Max: 4

The number of images to generate.

The negative prompt to use. Use it to address details that you don't want in the image.

Min: 20 - Max: 50

The number of inference steps to perform. More steps can improve detail at the cost of speed.

Min: 1 - Max: 8

The CFG (Classifier Free Guidance) scale. Higher values increase adherence to the prompt.

The format of the generated image.

The same seed and the same prompt given to the same version of the model will output the same image every time.

You need to be logged in to run this model and view results.
Log in

Model Output

Output

Generated image output
Generated in 15.994 seconds
Logs (1 lines)

Model Example Requests

Examples

Example output 1Example output 2

Model Details

Model Details

Boogu-Image turns a text prompt into a high-quality image. Provide a prompt describing the scene, pick an aspect ratio, and it renders detailed, coherent images with strong prompt adherence. Its distinctive control is a CFG guidance schedule: you can shape how strongly the prompt is enforced across the denoising process, which helps balance fidelity to your wording against natural-looking detail. It can produce up to four images per request and supports common aspect ratios from square to wide landscape.

## Best for - General text-to-image generation: scenes, characters, products, concept art, and illustrations from a written description - Iterating on a single idea by generating several variations at once (up to four per request) - Targeting a specific aspect ratio (square, portrait, or landscape) without cropping - Dialing in prompt adherence vs. detail through the guidance scale and CFG schedule

## Choose another model when - You want to edit, inpaint, or restyle an existing image rather than generate from scratch — use an image-editing model - You need to render long, precisely-spelled text inside the image as the primary goal — use a model specialized for in-image text - You need video output — use a text-to-video or image-to-video model

## Tips - Put the subject and the most important details early in the prompt; use `negative_prompt` to suppress unwanted elements - Raise `guidance_scale` for tighter prompt adherence, lower it for more natural, less constrained results - Set `output_format` to `png` when you need lossless output; the default `jpeg` is smaller and faster - Pass a fixed `seed` to reproduce a result or to vary one knob at a time

To run via the ModelRunner JavaScript client: ```js import { modelrunner } from "@modelrunner/client";

const result = await modelrunner.subscribe("boogu/boogu-image", { input: { prompt: "A red apple on a white marble table, soft studio lighting", image_size: "square_hd", num_images: 1, }, }); ```