D
doubao-seedream-5-0-pro
· 图像
doubao-seedream-5-0-pro
价格
| 图像 | ¥0.4 / 每次生成 |
如何调用
from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
model="doubao-seedream-5-0-pro",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)