# Google 为 Gemini Flash 模型推出 agentic 视频理解，token 最多减少 88%

- 来源：MarkTechPost（RSS）
- 作者：Michal Sutter
- 发布时间：2026-09-05 12:37
- AIHOT 分数：67
- AIHOT 链接：https://aihot.virxact.com/items/cmtnx276q0f44roqsm4dnuf9s
- 原文链接：https://www.marktechpost.com/2026/09/04/google-agentic-video-understanding-gemini-flash-models

## AI 摘要

Google 在 Gemini Flash 系列模型上推出 agentic 视频理解，模型不再按固定 1 FPS 单遍读取视频，而是按需加载帧、音频和转录文本。

## 正文

Video has been the most expensive modality to reason over. A Gemini model handed a 90-minute lecture has, until now, ingested the whole thing at a fixed one frame per second, whether the question was ‘summarize this’ or ‘what time does the speaker switch to the pricing slide?’ That single-pass design forces a bad trade: pay for the full timeline in context, or pre-chunk the video and risk dropping the detail that mattered.

This week, Google launched agentic video understanding across its Flash models. Instead of ingesting the timeline, Gemini navigates it deciding what to watch, at what frame rate, and through which modality. Google reports up to 88% fewer tokens, up to 66% lower cost, and up to 7% higher accuracy on standard video benchmarks.

Is it deployable? Yes, but only as a hosted API feature. There are no open weights and nothing to self-host. It ships through the Gemini API in Google AI Studio and the Gemini Enterprise Agent Platform, works with both file uploads and public YouTube URLs, and bills at standard Gemini API token pricing with no additional feature fee.

What actually changed

Static processing, still the default on every Gemini model, extracts frames at 1 FPS in a single pass, processes audio at 1 Kbps single channel, and inserts timestamps every second. Agentic processing replaces that with a loop. The model pairs its own reasoning with native video tools to search, scan, and inspect target segments across frames, audio, and transcripts, loading only what the prompt requires. Developers could already assemble this by hand; the change is that Gemini runs the loop internally, which is where the development overhead disappears.

Across Google’s evaluations, Gemini 3.7 Flash with agentic understanding lands on the accuracy-to-cost Pareto frontier for video analysis among the models tested. The efficiency gains concentrate on long-form content, from 10-minute how-to guides to multi-hour recordings.

What the API returns

Agentic processing adds two step types to the response steps array: a processing_call when the model requests a segment or transcript, and a matching processing_result when that load completes. They interleave with thought steps and precede model_output, so they can drive a live progress trace in your UI. Their presence is also how you verify agentic mode actually ran.

Token accounting splits accordingly. Navigation reasoning bills as thought tokens (total_thought_tokens); frames, audio, and transcripts loaded on demand bill as tool-use tokens (total_tool_use_tokens).

Enabling it is one field on the video part:

interaction = client.interactions.create( model="gemini-3.7-flash", input=[ { "type": "video", "uri": "https://youtu.be/7Z5Vy9JBANs", "processing": "agentic" }, { "type": "text", "text": "What are the 3 most important announcements in this keynote?", }, ], )

You can also mix modes per video inside a single request, agentic on the long lecture, static on the short clip.

Key Takeaways

Agentic mode lets Gemini navigate a video timeline instead of ingesting it at a fixed 1 FPS.

Google reports up to 88% fewer tokens, 66% lower cost, and 7% higher accuracy on video benchmarks.

Supported on Gemini 3.8, 3.7, 3.6 Flash and 3.5 Flash-Lite; enabled by one processing field.

Static remains better for clips under five minutes and for frame-by-frame precision work.

Standard API pricing applies, but navigation reasoning is billed as thought tokens.

Check out the Google blog, Gemini API video understanding docs, Developer guide in AI Studio and Agentic vision announcement. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.
