Nano Banana 2 Lite es el modelo de imagen más rápido y económico de Google (gemini-3.1-flash-lite-image), pero ¿dónde deberías ejecutarlo en realidad?
There are three solid paths: Google's own AI apps, a developer API, and the OpenArt all-in-one creative platform. Here's how to use each.
Conclusiones clave
- Nano Banana 2 Lite es el modelo de imagen más rápido y económico de Google (gemini-3.1-flash-lite-image).
- Easiest start: the Gemini app's Flash-Lite mode or Google AI Studio, no code needed.
- Developers can call it through the Gemini API for about $0.034 per 1K image.
- OpenArt es el mejor hogar todo en uno, con muchos de los mejores modelos en un solo plan.
- OpenArt también añade 4 generaciones simultáneas por modelo, edición y escalado.
Option 1: Google's Gemini app and AI Studio
La forma más rápida de probar Nano Banana 2 Lite es a través de las propias apps de Google.
En la app de Gemini, cambia al modo Flash-Lite, escribe un prompt y genera, sin necesidad de configurar nada. Es la vía más sencilla para crear imágenes de forma casual y cotidiana en web o móvil, y una forma estupenda de ver qué puede hacer el modelo antes de comprometerte con nada.
For a bit more control, open Google AI Studio, start a new prompt, and select the gemini-3.1-flash-lite-image model. AI Studio is the best place to experiment with prompts, tune your inputs, and preview results before you build anything, and you can copy the generated code straight into your own project. Both are free to experiment with, which makes them the natural first stop.
Option 2: Plug into the Gemini API (technical setup)
Para generar imágenes de forma programática, ya sea para una app, un trabajo por lotes o un pipeline automatizado, llama a Nano Banana 2 Lite a través de la API de Gemini.
First, grab an API key in Google AI Studio and install the SDK:
pip install google-genai
Then generate an image with a few lines of Python:
from google import genai
client = genai.Client(api_key="YOUR_API_KEY")
response = client.models.generate_content(
model="gemini-3.1-flash-lite-image",
contents="A serene mountain lake at sunrise, soft morning light",
)
for part in response.candidates[0].content.parts:
if part.inline_data:
with open("output.png", "wb") as f:
f.write(part.inline_data.data)
At roughly $0.034 per 1K image, it's cost-efficient for high-volume workloads. Check Google's Gemini API image-generation docs for the latest parameters and limits. This route is ideal for product features, bulk content generation, and any workflow that needs images created on the fly.
Opción 3: úsalo en OpenArt (la mejor opción todo en uno)
Las herramientas de Google son estupendas para ejecutar Nano Banana 2 Lite por sí solo. Pero la mayoría de creadores no se limitan a un único modelo, y ahí es donde OpenArt destaca como el lugar más productivo para usarlo.
Generating an image on OpenArt takes three simple steps:
Elige el modelo.
Abre el generador de imágenes de OpenArt y selecciona Nano Banana 2 Lite en el menú de modelos, luego elige tu formato: vertical para Reels y Shorts, cuadrado para publicaciones del feed o panorámico para miniaturas y banners.
Escribe tu prompt.
Describe your subject, style, lighting, background, mood, and any in-image text you want, and upload reference images to fuse a character, product, or style into the shot.
Genera y perfecciona.
Generate in near real time, then iterate in tight loops or open Edit Image for precise local changes, like swapping a background or fixing a label, before you download.
OpenArt also gives you more than a standalone generator:
Muchos modelos, un solo plan:
Alongside Nano Banana 2 Lite, OpenArt gives you Nano Banana Pro, GPT Image 2, Recraft V4, and more under a single subscription, with no separate accounts or API bills to juggle. Prototype on Lite, then switch to a heavier model when a project needs it.
Pon en cola 4 generaciones a la vez, por modelo:
Run up to four generations simultaneously for each model, so you explore variations in parallel instead of one at a time, a perfect match for Lite's fast, iterative style.
Edición avanzada y escalado:
Refine results with built-in post-generation editing tools, and upscale beyond Lite's native 1K output for crisp, high-resolution exports, the finishing step Google's raw model doesn't include.
Put together, that means you get Lite's speed and low cost plus everything you need to take an image from rough draft to final export, without leaving the platform.
Start using Nano Banana 2 Lite today
If you just want to dabble, the Gemini app is the fastest start; if you're building software, the Gemini API is the way in. But if you create regularly and want every top model, parallel generations, and pro editing in one place, OpenArt's Generador de imágenes con IA is the best home for Nano Banana 2 Lite.