- Organizations
- Tencent
- Hunyuan Image 3
Hunyuan Image 3: Benchmarks, Pricing & Context Window
Hunyuan Image 3 is a image generation model from Tencent, released in January 2024.
Tencent's HunyuanImage 3.0 Instruct - high-quality text-to-image and instruction-based image-to-image editing. Supports up to 3 reference images for edits, flexible aspect ratios, prompt enhancement with reasoning, and configurable
Hunyuan Image 3 examples
Recent arena outputs from Hunyuan Image 3, picked from the highest-ranked matchups.
Hunyuan Image 3 API
Set for image-to-image / editing models.
Run a request to see the response
Use it in your code
OpenAI-compatible endpoint through the LLM Stats gateway.
import requests
# Create the generation. wait="auto" long-polls (up to 60s) so most short
# jobs return as "completed" in a single round-trip.
res = requests.post(
"https://gateway.llm-stats.com/v1/generations",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"model": "hunyuan-image-3",
"input": {"prompt": "A beautiful sunset over mountains"},
"wait": "auto",
},
)
job = res.json()
# If it didn't finish inside the wait window, poll the same resource.
while job["status"] in ("queued", "running"):
res = requests.get(
f"https://gateway.llm-stats.com/v1/generations/{job['id']}",
params={"wait": 60},
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
job = res.json()
if job["status"] == "completed":
print("image:", job["output"]["media"][0]["url"])
else:
print("Failed:", job["error"]["message"])Need an API key? Create one above in the playground, or read the API documentation.
Hunyuan Image 3 pricing
Providers
Hunyuan Image 3 starts at $0.0800 per generated image via Replicate. See all 2 providers below with their per-image pricing, latency, and modality support.
| Provider | Price $/image | Latency s | Input | Output |
|---|---|---|---|---|
| $0.0800 | — | |||
| $0.0900 | — |
Hunyuan Image 3 benchmarks
Rankings
Performance by category and language
Where Hunyuan Image 3 is strongest across prompt themes and languages. Conservative TrueSkill score (μ − 3σ), only axes with 3+ votes.
Quality Tracker
Similar Models
How Hunyuan Image 3 compares to its closest neighbors on each image arena it competes in.
Hunyuan Image 3 license
Hunyuan Image 3 is released under the Tencent Hunyuan Community License Agreement license, which restricts commercial use.
- License
- Tencent Hunyuan Community License Agreement
- Non-commercial
Tencent Hunyuan Community License Agreement - restricted community license with territory, use, and scale limitations
Models like Hunyuan Image 3
Other image models ranked closest to Hunyuan Image 3.
FAQ
Common questions about Hunyuan Image 3.