All models
Imagev1.0.0
Nano Banana Pro
Conversational image generation and editing with Nano Banana Pro
4 inputsIMAGE
Demo coming soon
Demo coming soon
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins nano-banana-pro and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("nano-banana-pro", {
prompt: { value: "example" },
image: { ref: "https://..." },
aspectRatio: { value: "1:1" },
imageSize: { value: "1K" },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node nano-banana-pro \
-i prompt="example" \
-i image=@https://... \
-i aspectRatio="1:1" \
-i imageSize="1K"{
"name": "runs_node",
"arguments": {
"node": "nano-banana-pro",
"inputs": {
"prompt": {
"value": "example"
},
"image": {
"ref": "https://..."
},
"aspectRatio": {
"value": "1:1"
},
"imageSize": {
"value": "1K"
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"nano-banana-pro","inputs":{"prompt":{"value":"example"},"image":{"ref":"https://..."},"aspectRatio":{"value":"1:1"},"imageSize":{"value":"1K"}}}'Schema
Inputs
| prompt* | TEXT | ||
| image | IMAGE | Reference image | |
| aspectRatio | TEXT | 1:1 · 2:3 · 3:2 · 3:4 · 4:3 · 4:5 · 5:4 · 9:16 · 16:9 · 21:9 | 1:1 |
| imageSize | TEXT | Resolution 1K · 2K · 4K | 1K |
Outputs
| image | IMAGE |