bytedance/doubao-seedance-2.0
字节 Seedance 2.0 视频生成。最长约 20 秒,运动与物理真实。异步提交轮询出片。
把 ONEHOP_KEY 占位符替换为你的 API Key。 创建 →
from google import genai
# OneHop 兼容 Vertex AI Gemini generateContent 接口
client = genai.Client(
api_key="<ONEHOP_KEY>",
http_options={"base_url": "https://api.onehop.ai/vertex-ai"},
)
response = client.models.generate_content(
model="bytedance/doubao-seedance-2.0",
contents="What is the meaning of life?",
)
print(response.text)