| wan2.7-image | wan2.7-image-pro | |
|---|---|---|
| 厂商 | 通义千问 | 通义千问 |
| 按次计费 | $0.030 | $0.08 |
| 上下文 | — | — |
| 智能指数 | — | — |
| 编程指数 | — | — |
两者均按次计费。单张价格较低的是 ¥0.20,另一款为 ¥0.50,相差 2.50 倍,在批量场景下差异直接可见。
标签:wan2.7-image — 图像生成 · wan2.7-image-pro — 图像生成
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"}])