Nano Banana
谷歌快速、低成本的图像模型系列,支持文本生成图像以及通过提示词编辑已有图像。
- text to image
$0.039$0.0312-20%/ 次请求
Loading...
Google DeepMind 的图像与视频生成模型。
通过 E2X 提供的可用于生产环境的 Google 模型。
const result = await fetch(
'https://api.e2x.ai/v1/generate/submit',
{
method: 'POST',
headers: {
Authorization: `Bearer ${E2X_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
modelId: 'google/your-model-slug',
prompt: 'A neon-lit city at midnight',
}),
},
);
const json = await result.json();探索适用于类似场景的其他提供商