Back to Models
Google Imagen 4.0 Fast
google/imagen-4.0-fast
Google
Image Generation
Description
Google Imagen 4.0 Fast by Google. This model supports image capabilities.
Specifications
Pricing
- Per Image Cost:
- $0.04000000
- Images per Dollar:
- 25.00
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-fast",
messages: [{ role: "user", content: "Hello!" }],
});