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.
Specifications
Pricing
- Per Image Cost:
- $0.12000000
- Images per Dollar:
- 8.33
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "google/imagen-4.0-ultra",
messages: [{ role: "user", content: "Hello!" }],
});