Imagen 3
by Google
Google highest-quality text-to-image foundation model with rich detail, photorealism, and accurate in-image text rendering.
Parameters
Imagen 3
Context Length
1K
Category
image
Available Serverless
Run queries immediately, pay only for usage
$31.50in|$0.000out
per 1000 images
About this model
Imagen 3 is Google's highest quality text-to-image generator, producing images with remarkable detail, accurate textures, advanced lighting, and crisp in-image text typography. Accessible through the standard OpenAI-compatible image endpoint on DOS.AI.
Capabilities
PhotorealismIn-image text typographyHigh resolutionRich details
Use Cases
- Marketing creative
- Concept art
- Product visualization
- E-commerce assets
Model Details
- Provider
- Model ID
- imagen-3
- Parameters
- Imagen 3
- Context Length
- 1K tokens
- Category
- image
API Usage
Use the DOS API to integrate Imagen 3 into your applications. Our API is compatible with OpenAI's client libraries for easy migration.
Model ID
imagen-3Python
python
from dos import DOS
client = DOS()
response = client.chat.completions.create(
model="imagen-3",
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",
"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",
messages: [
{ role: "user", content: "Hello, how are you?" }
]
});
console.log(response.choices[0].message.content);