LLM ยท sync
nano-banana
Raw Gemini image generation. Prompt in, PNG out.
Prompt โ image
About
nano-banana is the catalogue's straight image-gen endpoint. Pass a prompt and (optionally) an aspect ratio; get back a PNG hosted under /r/.
**When to use this vs poster-forge:** โข Use nano-banana when you want full control over the prompt and just need the raw artwork. โข Use poster-forge when you want orqis to plan a typographic layout (title, subtitle, event details) and composite real text over the generated background. nano-banana doesn't do text rendering reliably.
**Modes:** โข **Managed** โ set `GEMINI_API_KEY`. Buyers pay 15 credits per call (image-gen is the priciest tier). โข **BYO key** โ pass `apiKey` for the 1-credit routing fee; your Gemini account pays for the image. โข **Mock** โ neither set โ returns an SVG-composited placeholder showing your prompt + a 'MOCK' badge.
Aspect ratios: 1:1 (1024x1024), 4:3, 3:4, 16:9, 9:16. Prompt cap: 4,000 chars.
{
"type": "object",
"required": [
"prompt"
],
"properties": {
"prompt": {
"type": "string",
"maxLength": 4000
},
"aspectRatio": {
"type": "string",
"enum": [
"1:1",
"4:3",
"3:4",
"16:9",
"9:16"
],
"default": "1:1"
},
"apiKey": {
"type": "string",
"description": "BYO Gemini key. When set, routing fee is 1 credit."
}
}
}These are descriptive previews. Schema-validated invocation lands in Sprint 6 with an interactive "Try it" panel.
Reviews (0)
No reviews yet โ be the first to share your experience.