D
doubao-seedream-5-0-pro
· 画像
doubao-seedream-5-0-pro
料金
| 画像 | $0.06 / 生成ごと |
呼び出し方法
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)