Daily Tech Briefing
AI 科技速览
每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。
Google AI Blog · 2026/7/28 16:00:00

Gemini API Managed Agents: 3.6 Flash, hooks, and more
AI 中文解读
谷歌的AI代理工具迎来重大升级!这次的最大亮点是,谷歌为开发者推出的“托管式AI代理”直接用上了更快更便宜的3.6 Flash模型,还能在AI“动起来”之前设置各种安全把关和预算限制,就像给AI装上了行为监控器和钱包。
简单来说,以前开发者调用谷歌的AI来自动执行任务(比如写邮件、查数据),就像请了一个不太懂规矩的临时工,容易出错或烧钱。现在谷歌推出了一个“托管版”智能助手:它默认用上最新的低成本高速度模型(3.6 Flash),还新增了“环境钩子”——这好比在AI的工作间里装了几道安全门,可以阻止它调用危险工具,或者实时审计它想干什么。同时,谷歌还加入了预算控制(防止AI过度消费)、定时触发(让AI按计划自动工作),以及免费试用额度,大大降低了开发门槛。
对普通用户来说,这意味着未来你用到的聊天机器人、客服助手或自动化工具会更聪明、更省钱,也更安全——比如AI在尝试访问你的私人数据前就会被拦截。同时,更多小型创业公司和开发者能免费尝试这些高级功能,我们有望很快用上更多接地气的AI应用。
{
"reading_time": "[[read\u002Dtime]] min read"
}
Breadcrumb
Home
Innovation & AI
Technology
Developer tools
Gemini API Managed Agents: 3.6 Flash, hooks, and more
Jul 28, 2026
|
x.com
Facebook
LinkedIn
Mail
Copy link
Managed Agents in Gemini API now default to Gemini 3.6 Flash. New environment hooks let you block, lint, or audit tool calls inside the sandbox. Also, we’ve added budget controls, scheduled triggers, and free tier access.
Philipp Schmid
Member of the Technical Staff, Google DeepMind
Mariano Cocirio
Product Manager, Google DeepMind
Share
x.com
Facebook
LinkedIn
Mail
Copy link
class ProgressiveImage {
EVENTS = {
TRANSITION_END: 'transitionend',
};
CSS_CLASSES = {
BLUR: 'uni-progressive-image--blur',
NO_BLUR: 'uni-progressive-image--no-blur',
};
init(el) {
this.el = el;
this._events();
this._upgradeImage();
}
_upgradeImage() {
// For gif format images we don't include data-srcset and data-sizes
// We can safely remove the blur filter.
if (!this.el.dataset.srcset || !this.el.dataset.sizes) {
this.el.classList.add(this.CSS_CLASSES.NO_BLUR);
return;
}
this.el.setAttribute('srcset', this.el.dataset.srcset);
this.el.setAttribute('sizes', this.el.dataset.sizes);
requestAnimationFrame(() => {
this.el.classList.add(this.CSS_CLASSES.NO_BLUR);
});
}
_events() {
// Once the transition completes is safe to clean some attributes
this.el.addEventListener(this.EVENTS.TRANSITION_END, () => {
this.el.classList.remove(this.CSS_CLASSES.BLUR, this.CSS_CLASSES.NO_BLUR);
this.el.removeAttribute('data-srcset');
this.el.removeAttribute('data-sizes');
});
}
}
document.addEventListener('DOMContentLoaded', () => {
const images = document.querySelectorAll('[data-component="uni
分享
阅读原文 ↗