gemini flash latest is Google's fast Gemini tier that gets updated on a rolling basis instead of being frozen at a single snapshot — the "Latest" in the name means you're pointed at whatever the current fast build is, not a version you pin forever. It carries a 1,048,576-token context window and a 65,536-token output ceiling, with reasoning switched on by default so it can hold a chain of thought through multi-step tool calls rather than answering in one shot. At $1.50 per million input tokens and $9.00 per million output tokens, with cached input priced at $0.15 per million, it's built to be the model you call by default, not the one you reach for occasionally.
What "Latest" Means Here
Pointing at gemini flash latest instead of a dated snapshot buys convenience — Google rolls improvements into the alias without you changing a model string — at the cost of reproducibility. If an evaluation pipeline depends on stable outputs across weeks, a dated snapshot is the safer choice. If the goal is the current best fast model with no maintenance overhead, the alias does the job.
Context Window and Pricing in Practice
The quick numbers:
- Context window: 1,048,576 tokens
- Max output: 65,536 tokens
- Input price: $1.50 per million tokens
- Output price: $9.00 per million tokens
- Cached input: $0.15 per million tokens
- Input modalities: text, image, video, audio, pdf
1,048,576 tokens of context is enough to hold a large codebase, a long transcript, or a stack of PDFs in a single call, and the accepted input isn't limited to plain text. The economics matter more than the ceiling for most teams: at $1.50 in and $9.00 out per million tokens, a request with 50,000 input tokens and a 2,000-token reply costs roughly nine cents. Output is the expensive side of that ratio — six times the input rate — so prompts that ask for long, verbose answers cost more than prompts that ask for short, structured ones.
Reasoning and Tool Calling
Reasoning is on and function calling is supported, which makes this a workable base for agents that need to plan a sequence of tool calls rather than just answer a question. Vision is supported too, so image and video frames can sit in the same context alongside text without a separate pipeline.
Flash Latest vs Flash-Lite Latest
Google also ships Gemini Flash-Lite Latest at $0.25 input / $1.50 output per million tokens — roughly a sixth of Flash Latest's price. Both carry the same 1,048,576-token window and the same capability score of 89.0 in this listing, so the practical choice between them is about output quality per dollar on a specific workload, not raw ceiling. Flash Latest is the one to reach for when the extra cost buys noticeably better answers on real prompts; Flash-Lite Latest is the one to reach for when it doesn't.
One Thing to Watch
Output modality is text only — despite accepting image, video, audio, and pdf as input, it doesn't generate images or audio back. Teams building anything that needs generated visuals alongside a text answer will need a second model in the pipeline to cover that half of the job.