Nano Banana Pro
by Google
Google premium image-output Gemini model. 1K and 2K are priced identically; this catalog offering exposes up to 2K.
Run queries immediately, pay only for usage
Pricing unit not published yet
About this model
Google premium image-output Gemini model. 1K and 2K are priced identically; this catalog offering exposes up to 2K.
Capabilities
Providers
One model, several sources. DOS routes to the first that answers and falls back automatically, or you can pin a provider per request.
| Provider | Served from |
|---|---|
GoogleAvailable | US |
Model Details
- Provider
- Model ID
- nano-banana-pro
- Parameters
- Context Length
- 33K tokens
- Category
- image
API Usage
Use the DOS API to integrate Nano Banana Pro into your applications. Our API is compatible with OpenAI's client libraries for easy migration.
Model ID
nano-banana-proPython
from dos import DOS
client = DOS()
response = client.chat.completions.create(
model="nano-banana-pro",
messages=[
{"role": "user", "content": "Hello, how are you?"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.dos.ai/v1/chat/completions \
-H "Authorization: Bearer $DOS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "nano-banana-pro",
"messages": [
{"role": "user", "content": "Hello, how are you?"}
]
}'Node.js
import DOS from 'dos-ai';
const client = new DOS();
const response = await client.chat.completions.create({
model: "nano-banana-pro",
messages: [
{ role: "user", content: "Hello, how are you?" }
]
});
console.log(response.choices[0].message.content);Related Models
Nano Banana 2 Lite
Google fast, low-cost image-output Gemini model. Output fixed at 1K resolution.
Nano Banana 2
Google mid-tier image-output Gemini model. Supports 0.5K/1K/2K/4K output resolutions (this catalog offering exposes up to 2K; see spec for 4K rationale).
Wan 2.2 T2I Flash
Alibaba DashScope fast text-to-image model (Wanx family). Submit+poll upstream, existing generateDashScopeImage pipeline, now reachable from the public /v1/images/generations route.