| wan2.7-image | wan2.7-image-pro | |
|---|---|---|
| Providers | Qwen | Qwen |
| Per request | $0.030 | $0.08 |
| Context window | — | — |
| Intelligence index | — | — |
| Coding index | — | — |
Both are billed per request. The cheaper one costs $0.030 per image against $0.08 — a 2.50× difference that matters directly at volume.
Tags: wan2.7-image — Image generation · wan2.7-image-pro — Image generation
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# wan2.7-image
client.chat.completions.create(model="wan2.7-image", messages=[{"role":"user","content":"Hi"}])
# wan2.7-image-pro
client.chat.completions.create(model="wan2.7-image-pro", messages=[{"role": "user", "content": "Hi"}])