Back to Models
Google Imagen 4.0 Ultra
google/imagen-4.0-ultra
Google
Image Generation
Description
Google Imagen 4.0 Ultra by Google. This model supports image capabilities. Main use: Image Generation.
Specifications
- Input Modalities:
- Text
- Output Modalities:
- Image
- Main Use:
- Image Generation
Pricing
- Per Image (1MP) Cost:
- 0.12000000 Credits
- Images (1MP) per credit:
- 8.33
Usage Example
const { Client } = require('ai-proxy-sdk');
const client = new Client({
consumerKey: process.env.BITMESH_CONSUMER_KEY,
consumerSecret: process.env.BITMESH_CONSUMER_SECRET
});
const response = await client.images.generate({
prompt: 'Flying car',
model: 'google/imagen-4.0-ultra',
width: 1024,
height: 1024,
seed: 22,
n: 1,
steps: 20
});