Nano Banana
テキストからの画像生成と、プロンプトによる既存画像の編集に対応した、Google の高速・低コストな画像モデルファミリー。
- text to image
$0.039$0.0312-20%/リクエスト
Loading...
Google DeepMind の画像・動画生成モデル。
E2X経由で利用可能な、本番運用対応のGoogleモデル。
1つのAPIキー。1つのエンドポイント。すべての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();類似のユースケースに対応する別のプロバイダーを探す