Model Details
HunyuanImage 3.0 turns a text prompt into a high-quality image. It is a large open image foundation model (80 billion parameters) built for strong prompt adherence, and it handles long, detailed descriptions well — you can spell out subject, composition, lighting, and style in a single prompt and expect the result to track it closely. Set the aspect ratio with `image_size` (presets like `square_hd`, `portrait_16_9`, `landscape_16_9`, or an explicit `{width, height}`), and generate up to four variations per call with `num_images`.
## Best for - Photorealistic and stylized images from a detailed written description - Long, richly specified prompts where subject, scene, lighting, and mood all need to land - Concept art, editorial illustration, posters, and marketing visuals from a brief - Generating a few composition variants at once to pick from - Text-to-image work at non-square aspect ratios for social, print, or web layouts
## Choose another model when - You want to edit, restyle, or modify an existing image rather than generate from scratch — use an image-editing model - You have a reference photo to transform and want to keep its structure — use an image-to-image model - You need the cheapest, fastest drafts and can trade some fidelity — use a distilled fast text-to-image model - You need video — use a text-to-video or image-to-video model
## Tips - Write specific, descriptive prompts; the model rewards detail about subject, composition, and style over short keyword lists - Turn on `enable_prompt_expansion` to have a language model flesh out a terse prompt while preserving its intent — useful for short briefs, skip it when you want your exact wording honored - Use `image_size` presets for common aspect ratios, or pass an explicit `{width, height}` object for a precise canvas - Each generated image is billed by megapixel, so larger sizes and higher `num_images` cost more
To run via the ModelRunner JavaScript client: ```js import { modelrunner } from "@modelrunner/client";
const result = await modelrunner.subscribe("tencent/hunyuan-image/v3/text-to-image", { input: { prompt: "a snow leopard on a rocky ledge at golden hour, telephoto compression, sharp fur detail, cinematic lighting", image_size: "landscape_16_9", num_images: 1, output_format: "png", }, }); ```







