Google DeepMind 已为 Gemini 3.7 Flash、3.6 Flash 和 3.5 Flash-Lite 提供智能视频理解能力。该系统可动态扫描视频片段,在提升理解准确性的同时,将 token 消耗最高降低 88%,成本最高降低 66%。
开发者可在 Google AI Studio 或 Gemini 企业代理平台中,将 API 配置设为“agentic”后使用该功能。

该功能由 Google DeepMind 高级产品经理罗汉·多希(Rohan Doshi)与研究总监马里奥·卢西奇(Mario Lučić)等人介绍。官方示例代码如下:
from google import genai
client = genai.Client()
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?",
},
],
)
print(interaction.output_text)




