MarkTechPost@AI 04月10日 06:20
Google Releases Agent Development Kit (ADK): An Open-Source AI Framework Integrated with Gemini to Build, Manage, Evaluate and Deploy Multi Agents
index_new5.html
../../../zaker_core/zaker_tpl_static/wap/tpl_guoji1.html

 

谷歌推出了Agent Development Kit (ADK),这是一个开源框架,旨在简化开发者构建、管理和部署多智能体系统。ADK基于Python编写,强调模块化和灵活性,适用于各种规模的项目。它提供组件如智能体、工具、协调器和内存模块,支持扩展和替换。ADK集成了Gemini模型和Vertex AI,并提供Agent Engine用于生产部署。此外,Google还提供了Agent Garden,包含预构建的智能体和工具,帮助开发者快速原型。ADK还内置了安全和治理功能,如输出控制、身份权限、输入筛选和行为监控,以增强安全性。

🤖 ADK是一个面向开发者的框架,用于创建多智能体系统。它提供智能体、工具、协调器和内存模块等组件,均可扩展或替换,让开发者控制智能体交互和内部状态。

🛠️ ADK的核心特性包括代码优先方法,使用纯Python定义行为;支持多智能体运行和协调;提供自定义工具和内存扩展;以及实时信息交换的流式支持。

💡 ADK与谷歌的AI生态系统深度集成,支持Gemini模型并连接到Vertex AI,允许访问来自Anthropic、Meta、Mistral等提供商的模型。此外,谷歌还推出了Agent Engine,用于生产环境中的智能体部署。

🛡️ ADK为企业级应用提供了安全和治理功能,包括输出控制、身份权限、输入筛选和行为监控,以增强在安全或敏感环境中的部署信心。

Google has released the Agent Development Kit (ADK), an open-source framework aimed at making it easier for developers to build, manage, and deploy multi-agent systems. ADK is written in Python and focuses on modularity and flexibility, making it suitable for both simple and more complex use cases involving multiple interacting agents.

Summary

What is ADK?

ADK is a developer-oriented framework for creating multi-agent systems. It provides a set of components like agents, tools, orchestrators, and memory modules, all of which can be extended or replaced. The idea is to give developers control over how agents interact and manage their internal state, while also providing a structure that’s easy to understand and work with.

Core Features

Example: A Basic Multi-Agent Setup

Here’s a short script that shows how to define and run a multi-agent system using ADK:

from adk import Agent, Orchestrator, Toolclass EchoTool(Tool):    def run(self, input: str) -> str:        return f"Echo: {input}"echo_agent = Agent(name="EchoAgent", tools=[EchoTool()])relay_agent = Agent(name="RelayAgent")orchestrator = Orchestrator(agents=[echo_agent, relay_agent])if __name__ == "__main__":    input_text = "Hello from ADK!"    result = orchestrator.run(input_text)    print(result)

This script creates two agents and a simple custom tool. One agent uses the tool to process input, and the orchestrator manages the interaction between them.

Development Workflow

ADK is designed to fit into standard development workflows. You can:

Adding a Custom Tool

You can define your own tools to let agents call APIs or execute logic. For example:

class SearchTool(Tool):    def run(self, query: str) -> str:        # Placeholder for API logic        return f"Results for '{query}'"

Attach the tool to an agent and include it in the orchestrator to let your system perform searches or external tasks.

Integrations and Tooling

ADK integrates well with Google’s broader AI ecosystem. It supports Gemini models and connects to Vertex AI, allowing access to models from providers like Anthropic, Meta, Mistral, and others. Developers can choose the best models for their application needs.

Google also introduced Agent Engine, a managed runtime for deploying agents into production. It handles context management, scaling, security, evaluation, and monitoring. Though it complements ADK, Agent Engine is also compatible with other agent frameworks such as LangGraph and CrewAI.

To help developers get started, Google provides Agent Garden, a collection of pre-built agents and tools. This library allows teams to prototype faster by reusing existing components rather than starting from scratch.

Security and Governance

For enterprise-grade applications, ADK and its supporting tools offer several built-in safeguards:

These features help teams deploy AI agents with more confidence in secure or sensitive environments.

What’s Next

Right now, ADK supports Python, and the team behind it has shared plans to support other languages over time. Since the project is open-source, contributions and extensions are encouraged, and the framework may evolve based on how developers use it in real-world settings.

Conclusion

ADK offers a structured but flexible way to build multi-agent systems. It’s especially useful if you want to experiment with agent workflows without having to build everything from scratch. With integration options, prebuilt libraries, and production-grade tooling, ADK can be a practical starting point for teams developing AI-driven applications.

Whether you’re experimenting with small agent workflows or exploring more involved systems, ADK is a practical tool to consider.


Check out the GitHub Page and Documentation. All credit for this research goes to the researchers of this project. Also, feel free to follow us on Twitter and don’t forget to join our 85k+ ML SubReddit.

[Register Now] miniCON Virtual Conference on OPEN SOURCE AI: FREE REGISTRATION + Certificate of Attendance + 3 Hour Short Event (April 12, 9 am- 12 pm PST) + Hands on Workshop [Sponsored]

The post Google Releases Agent Development Kit (ADK): An Open-Source AI Framework Integrated with Gemini to Build, Manage, Evaluate and Deploy Multi Agents appeared first on MarkTechPost.

Fish AI Reader

Fish AI Reader

AI辅助创作,多种专业模板,深度分析,高质量内容生成。从观点提取到深度思考,FishAI为您提供全方位的创作支持。新版本引入自定义参数,让您的创作更加个性化和精准。

FishAI

FishAI

鱼阅,AI 时代的下一个智能信息助手,助你摆脱信息焦虑

联系邮箱 441953276@qq.com

相关标签

ADK 多智能体系统 AI框架 谷歌
相关文章