Skip to content
Dashboard

Nano Banana Pro (Gemini 3 Pro Image) now available in the AI Gateway

import { generateText } from 'ai';
const result = await generateText({
model: 'google/gemini-3-pro-image',
prompt:
`Generate a labeled data pipeline diagram,
from data ingestion through transformation,
storage, and analytics layers.`,
});
if (result.text) {
process.stdout.write(`\nAssistant: ${result.text}`);
}
for (const file of result.files) {
if (file.mediaType.startsWith('image/')) {
await presentImages([file]);
}
}

AI Gateway: Track top AI models by usage

The AI Gateway model leaderboard tracks the most popular models over time, ranking them by the total volume of tokens processed across all Gateway traffic.

View the leaderboard

Ready to deploy?