Imagen-3 is Google’s high-quality text-to-image model, producing highly detailed images with rich lighting and minimal visual distractions. It is optimized for overall image quality and creative visual generation.
from openai import OpenAI client = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY") resp = client.images.generate( model="imagen-3", prompt="A white siamese cat", size="1024x1024", n=1, response_format="url", ) print(resp.data)