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

      Stop writing tests: Automate fully with Generative AI

      August 19, 2025

      Opsera’s Codeglide.ai lets developers easily turn legacy APIs into MCP servers

      August 19, 2025

      Black Duck Security GitHub App, NuGet MCP Server preview, and more – Daily News Digest

      August 19, 2025

      10 Ways Node.js Development Boosts AI & Real-Time Data (2025-2026 Edition)

      August 18, 2025

      This new Coros watch has 3 weeks of battery life and tracks way more – even fly fishing

      August 20, 2025

      5 ways automation can speed up your daily workflow – and implementation is easy

      August 20, 2025

      This new C-suite role is more important than ever in the AI era – here’s why

      August 20, 2025

      iPhone users may finally be able to send encrypted texts to Android friends with iOS 26

      August 20, 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

      Creating Dynamic Real-Time Features with Laravel Broadcasting

      August 20, 2025
      Recent

      Creating Dynamic Real-Time Features with Laravel Broadcasting

      August 20, 2025

      Understanding Tailwind CSS Safelist: Keep Your Dynamic Classes Safe!

      August 19, 2025

      Sitecore’s Content SDK: Everything You Need to Know

      August 19, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Why GNOME Replaced Eye of GNOME with Loupe as the Default Image Viewer

      August 19, 2025
      Recent

      Why GNOME Replaced Eye of GNOME with Loupe as the Default Image Viewer

      August 19, 2025

      Microsoft admits it broke “Reset this PC” in Windows 11 23H2 KB5063875, Windows 10 KB5063709

      August 19, 2025

      Windows 11 can now screen record specific app windows using Win + Shift + R (Snipping Tool)

      August 19, 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

    August 19, 2025
    Machine Learning

    Streamline employee training with an intelligent chatbot powered by Amazon Q Business

    August 19, 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

    Turning User Research Into Real Organizational Change

    Tech & Work

    How to Use Kami: Full Guide for Educators and Professionals

    Operating Systems

    This USB-C converter solved the biggest issue I have with my MacBook

    News & Updates

    CVE-2025-5828 – Autel MaxiCharger AC Wallbox Commercial USB Frame Packet Length Buffer Overflow Remote Code Execution Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    Pinout with Dan Johnson

    April 3, 2025

    Pinout is a new project by Dan Johnson that lets you connect your Laravel application…

    Former head of PlayStation says Microsoft’s Xbox Game Pass is “dangerous” because “big companies dictate what games can be created,” and he could not be more wrong

    May 30, 2025

    How you can get Microsoft 365 (formerly Office) for free – 3 easy ways

    June 19, 2025

    Upwork Freelancers vs Dedicated React.js Teams: What’s Better for Your Project in 2025?

    August 1, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

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