Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      CodeSOD: A Unique Way to Primary Key

      July 22, 2025

      BrowserStack launches Figma plugin for detecting accessibility issues in design phase

      July 22, 2025

      Parasoft brings agentic AI to service virtualization in latest release

      July 22, 2025

      Node.js vs. Python for Backend: 7 Reasons C-Level Leaders Choose Node.js Talent

      July 21, 2025

      The best CRM software with email marketing in 2025: Expert tested and reviewed

      July 22, 2025

      This multi-port car charger can power 4 gadgets at once – and it’s surprisingly cheap

      July 22, 2025

      I’m a wearables editor and here are the 7 Pixel Watch 4 rumors I’m most curious about

      July 22, 2025

      8 ways I quickly leveled up my Linux skills – and you can too

      July 22, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025
      Recent

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025

      Zero Trust & Cybersecurity Mesh: Your Org’s Survival Guide

      July 22, 2025

      Execute Ping Commands and Get Back Structured Data in PHP

      July 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025
      Recent

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025

      “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

      July 22, 2025

      Galaxy Z Fold 7 review: Six years later — Samsung finally cracks the foldable code

      July 22, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Machine Learning»Google Releases Agent Development Kit (ADK): An Open-Source AI Framework Integrated with Gemini to Build, Manage, Evaluate and Deploy Multi Agents

    Google Releases Agent Development Kit (ADK): An Open-Source AI Framework Integrated with Gemini to Build, Manage, Evaluate and Deploy Multi Agents

    April 9, 2025

    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

    • Set up a basic multi-agent system with under 100 lines of Python.
    • Customize agents and tools using a flexible API.
    • Currently Python-based, with plans to support other languages in the future.

    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

    • Code-first approach: You write plain Python to define behavior.
    • Multi-agent support: Run and coordinate multiple agents.
    • Custom tools and memory: Extend with your own logic and state management.
    • Streaming support: Agents can exchange information in real time.

    Example: A Basic Multi-Agent Setup

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

    Copy CodeCopiedUse a different Browser
    from adk import Agent, Orchestrator, Tool
    
    class 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:

    • Log and debug agent behavior.
    • Manage short- and long-term memory.
    • Extend agents with custom tools and APIs.

    Adding a Custom Tool

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

    Copy CodeCopiedUse a different Browser
    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:

    • Output control to moderate agent responses.
    • Identity permissions to restrict what agents can access or perform.
    • Input screening to catch problematic inputs.
    • Behavior monitoring to log and audit agent actions.

    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.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleGoogle Introduces Agent2Agent (A2A): A New Open Protocol that Allows AI Agents Securely Collaborate Across Ecosystems Regardless of Framework or Vendor
    Next Article Unveiling Attention Sinks: The Functional Role of First-Token Focus in Stabilizing Large Language Models

    Related Posts

    Machine Learning

    How to Evaluate Jailbreak Methods: A Case Study with the StrongREJECT Benchmark

    July 22, 2025
    Machine Learning

    Boolformer: Symbolic Regression of Logic Functions with Transformers

    July 22, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    Google Docs Can Now Edit Encrypted Word Files But Only in Beta As Of Now

    Operating Systems

    How We Use Epic Branches. Without Breaking Our Flow.

    Development

    Kudu is a distributed data storage engine

    Linux

    CVE-2025-48489 – FreeScout Cross-Site Scripting (XSS) Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    CVE-2025-4006 – Youyiio BeyongCms Unrestricted File Upload Vulnerability

    April 28, 2025

    CVE ID : CVE-2025-4006

    Published : April 28, 2025, 7:15 a.m. | 1 hour, 13 minutes ago

    Description : A vulnerability classified as critical has been found in youyiio BeyongCms 1.6.0. Affected is an unknown function of the file /admin/theme/Upload.html of the component Document Management Page. The manipulation of the argument File leads to unrestricted upload. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used.

    Severity: 4.7 | MEDIUM

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    CVE-2025-40777 – ” BIND Named CNAME Chain Abort Vulnerability”

    July 16, 2025

    8 Venture Firms in Cybersecurity Making Big Moves in 2025

    June 19, 2025

    Updated production-ready Gemini models, reduced 1.5 Pro pricing, increased rate limits, and more

    May 13, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.