AI News AI资讯 7d ago Updated 7d ago 更新于 7天前 47

Vercel's Andrew Qu on why agents are a new kind of software Vercel的Andrew Qu谈为什么智能体是一种新型软件

Vercel introduces "eve," a dedicated framework for building AI agents, born from internal needs to solve fragmentation in model switching, fallbacks, and resumability. Agents are defined as a distinct category of software requiring dynamic primitives for context, tools, and long-running work, differing significantly from traditional web applications. "Skills" are highlighted as critical for providing portable, up-to-date knowledge to agents, effectively correcting outdated model training data wi Vercel推出专用Agent框架eve,旨在解决构建智能体时面临的上下文管理、工具调用、可恢复性及长任务执行等工程痛点。 Agent被视为一种新型软件形态,其交互、接口和输出具有高度动态性,不再像传统Web应用那样可预测。 Vercel内部实践表明,Agent最适合处理需要推理能力的重复性业务任务,而非完全固定的自动化流程。 "Skills"机制成为关键基础设施,用于向模型提供实时、可移植的知识,以纠正模型训练数据过时的问题。 随着Agent流量激增,网站需优化为对Bot和Agent更友好,以适应用户访问模式从人类向智能体的转变。

65
Hot 热度
70
Quality 质量
68
Impact 影响力

Analysis 深度分析

TL;DR

  • Vercel introduces "eve," a dedicated framework for building AI agents, born from internal needs to solve fragmentation in model switching, fallbacks, and resumability.
  • Agents are defined as a distinct category of software requiring dynamic primitives for context, tools, and long-running work, differing significantly from traditional web applications.
  • "Skills" are highlighted as critical for providing portable, up-to-date knowledge to agents, effectively correcting outdated model training data without retraining.
  • Vercel is evolving into an agent-centric platform, offering built-in observability and evaluation while maintaining an open ecosystem for specialized partner integrations.
  • The shift in web traffic towards bots and agents necessitates making websites more accessible and structured for machine consumption rather than just human browsing.

Why It Matters

This interview provides a pragmatic roadmap for enterprise adoption of AI agents, moving beyond theoretical discussions to concrete architectural patterns like "skills" and "resumability." It signals a major industry pivot where infrastructure providers like Vercel are standardizing the agent lifecycle, reducing the friction for developers to build reliable, production-grade AI applications. Understanding these patterns is essential for engineers looking to transition from static web apps to dynamic, autonomous software systems.

Technical Details

  • Eve Framework: A cohesive library assembled from internal best practices, designed to handle agent-specific challenges such as switching LLM providers, implementing fallback mechanisms, and ensuring runs are resumable after interruptions.
  • Agent Primitives: Key technical components identified include filesystem agents, subagents, compaction strategies, and sandboxed environments for secure code execution and long-running jobs.
  • Skills Architecture: Implementation of "skills" as portable, on-demand knowledge modules that allow agents to access current product information (e.g., deprecation notices), acting as a forward-correction mechanism for static model weights.
  • Human-in-the-Loop Design: A hybrid approach to autonomy where well-defined tasks run in autonomous loops, while complex or "surgical" engineering tasks require periodic human steering and verification.
  • Observability Integration: Deployment of eve on Vercel provides out-of-the-box observability and evaluation metrics, enabling developers to monitor agent performance and decision-making processes in real-time.

Industry Insight

  • Standardization of Agent Infrastructure: As frameworks like eve mature, expect a consolidation of agent tooling. Developers should prioritize platforms that offer native support for observability, evaluation, and state management rather than building these primitives from scratch.
  • Knowledge Management via Skills: Organizations must treat documentation and product knowledge as dynamic assets. Implementing "skills" or similar RAG-based knowledge injection layers is crucial for maintaining accuracy in AI agents, especially in fast-changing industries.
  • Web Accessibility for Machines: With bot traffic surpassing human traffic, web architecture strategies should shift towards optimizing content for machine readability. This includes structured data, clear API endpoints, and semantic HTML that facilitates easier parsing and understanding by AI agents.

TL;DR

  • Vercel推出专用Agent框架eve,旨在解决构建智能体时面临的上下文管理、工具调用、可恢复性及长任务执行等工程痛点。
  • Agent被视为一种新型软件形态,其交互、接口和输出具有高度动态性,不再像传统Web应用那样可预测。
  • Vercel内部实践表明,Agent最适合处理需要推理能力的重复性业务任务,而非完全固定的自动化流程。
  • "Skills"机制成为关键基础设施,用于向模型提供实时、可移植的知识,以纠正模型训练数据过时的问题。
  • 随着Agent流量激增,网站需优化为对Bot和Agent更友好,以适应用户访问模式从人类向智能体的转变。

为什么值得看

本文揭示了头部开发者平台Vercel在AI时代的战略转型,从Web开发工具延伸至Agent基础设施构建,为行业提供了从“页面构建”到“智能体构建”的范式转移参考。通过分享内部最佳实践和开源框架eve的设计哲学,开发者可深入了解如何构建具备生产级稳定性、可观测性和安全性的企业级Agent系统。

技术解析

  • eve框架核心能力:针对Agent特有的需求设计了专用原语,包括上下文管理、工具集成、运行可恢复性(resumability)以及支持长时间运行的工作负载,解决了现有工具在模型切换、故障转移等方面的不足。
  • Skills机制与知识更新:利用Skills作为便携式、按需加载的知识模块,解决大模型静态知识库过时问题。例如,通过Skills引导Agent使用最新的产品API或替代过时的技术栈(如Vercel Postgres),实现模型的“向前修正”。
  • 人机协作反馈循环:提出根据任务复杂度选择自主性或人工介入的策略。对于定义明确的任务允许全自主循环,而对于需要精确控制的工程类工作,则保留人类在环(Human-in-the-loop)以进行监督和纠偏。
  • 内部最佳实践沉淀:Vercel通过内部部署数据Agent积累了文件系统Agent、子Agent(subagents)、压缩(compaction)等最佳实践,并将其标准化为框架功能,降低了外部开发者的试错成本。
  • 可观测性与评估集成:eve框架与Vercel平台深度集成,开箱即用地提供Agent运行时的可观测性(observability)和评估(evaluations)能力,便于监控Agent表现和迭代优化。

行业启示

  • Agent基础设施化趋势:随着Agent从实验走向生产,行业急需类似Web开发时代的标准化框架和工具链。企业应关注并采用具备完整生命周期管理(开发、调试、监控)的Agent平台,以降低工程复杂度。
  • 动态知识管理的重要性:静态提示词工程不足以应对快速变化的业务环境。建立基于Skills或外部工具的知识更新机制,确保Agent能获取实时、准确的信息,是提升Agent可靠性的关键战略。
  • Web内容的Agent可读性优化:网站流量结构的变化要求开发者重新审视SEO和内容策略。优化网站结构、API文档和机器人协议,使其更易于被Agent解析和利用,将成为未来数字营销和技术支持的重要方向。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Agent Agent Open Source 开源 Programming 编程