Imagen 3 Fast

by Google

Google rapid text-to-image generation model delivering quality visuals with low generation latency.

Parameters
Imagen 3 Fast
Context Length
1K
Category
image
Available Serverless

Run queries immediately, pay only for usage

$21.00in|$0.000out

per 1000 images

Try this modelView documentation

About this model

Imagen 3 Fast delivers high-quality visual assets at low latency, perfect for real-time applications, prototyping, and high-frequency image creation pipelines.

Capabilities

Rapid generationHigh throughputText-to-image

Use Cases

  • High-throughput image generation
  • Interactive prototyping
  • Real-time avatars

Model Details

Provider
Google
Model ID
imagen-3-fast
Parameters
Imagen 3 Fast
Context Length
1K tokens
Category
image

API Usage

Use the DOS API to integrate Imagen 3 Fast into your applications. Our API is compatible with OpenAI's client libraries for easy migration.

Model ID

imagen-3-fast

Python

python
from dos import DOS

client = DOS()

response = client.chat.completions.create(
    model="imagen-3-fast",
    messages=[
        {"role": "user", "content": "Hello, how are you?"}
    ]
)

print(response.choices[0].message.content)

cURL

bash
curl https://api.dos.ai/v1/chat/completions \
  -H "Authorization: Bearer $DOS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "imagen-3-fast",
    "messages": [
      {"role": "user", "content": "Hello, how are you?"}
    ]
  }'

Node.js

javascript
import DOS from 'dos-ai';

const client = new DOS();

const response = await client.chat.completions.create({
  model: "imagen-3-fast",
  messages: [
    { role: "user", content: "Hello, how are you?" }
  ]
});

console.log(response.choices[0].message.content);