Real-World Agent Examples with Gemini 3

Published: (December 19, 2025 at 12:15 PM EST)
4 min read

Source: Google Developers Blog

December 18, 2025

We are entering a new phase of agentic AI. Developers are moving beyond simple notebooks to build complex, production‑ready agentic workflows that can handle real‑world tasks—from browser automation to social media interactions.

Gemini 3 is designed to act as the core orchestrator for these workflows. Precise controls over reasoning depth and state management help address the reliability challenges that have historically made AI agents difficult to deploy.

But what does this look like in practice? Theory is great, but seeing the code is better.

We’ve collaborated with six open‑source frameworks and tools to create examples you can clone, run, and inspect to see how Gemini 3 powers the next generation of AI agents.

1. ADK (Agent Development Kit)

ADK logo

Agent Development Kit (ADK) is an open‑source, model‑agnostic framework developed by Google, designed to make building, testing, and deploying AI agents feel like standard software development. It provides the architectural primitives needed to build scalable agentic workflows, ranging from simple chatbots to complex multi‑agent systems. The ADK proudly supports any LLM but has a special relationship with the Gemini family of models and is designed to maximize Gemini’s unique capabilities.

The Retail Location Strategy sample agent demonstrates how to compose multiple specialized agents into a single tool:

  • Uses Gemini 3 equipped with tools such as Google Search, Google Maps, on‑the‑fly HTML generation, and code execution for deeper data munging and analytics.
  • Includes image generation via the new Nano Banana Pro model.
  • Agents work together in a linear yet flexible process with self‑reflection and correction, producing reliable, grounded, factual details that are organized and synthesized into a downloadable report and infographic.

All samples are conveniently available in the Agent Garden:

Feel free to explore, modify, and extend the ADK to fit your own AI agent projects.

2. Agno

Agno logo

Agno (formerly Phidata) is a popular open‑source framework for building multi‑agent systems equipped with memory, knowledge, and tools. Agno enables developers to create specialized AI agents—such as financial analysts or researchers—that can autonomously query APIs and reason over data.

In this demo, Agno works with Gemini 3 Pro to build a multi‑agent suite relying entirely on native model capabilities. It showcases a Creative Studio using a Nano Banana Pro tool for image generation, alongside research agents that use the built‑in:

Agno example

3. Browser Use

Browser Use logo

Browser Use is an open‑source library that empowers AI agents to interact with websites. It handles the complex bridge between an LLM’s reasoning and actual browser actions—clicking, typing, navigating—enabling robust web automation.

The demo showcases a form‑filling AI agent powered by Gemini 3 Pro. Instead of relying on brittle CSS selectors, the agent uses Gemini 3’s multimodal capabilities to:

  • Visually identify fields
  • Map structured JSON data to complex inputs
  • Handle file uploads autonomously

The model’s reasoning speed ensures the automation is fluid and reliable, even when navigating multi‑step forms or cross‑origin iframes.

Browser Use example

4. Eigent

Eigent logo

Eigent is a local‑first, multi‑agent platform designed to automate complex workforce tasks. It enables users to create and run a team of specialized AI agents directly on their own infrastructure, utilizing the CAMEL framework under the hood.

In this guide, Eigent applies the CAMEL workforce architecture to enterprise browser automation, specifically managing Salesforce deal cycles. AI agents autonomously navigate complex dashboards to update records and extract data. By leveraging Gemini 3’s thought signatures, the system maintains reasoning state across long‑horizon tasks, helping to prevent context drift and ensure reliability.

Eigent example

5. Letta

Letta logo

Letta (from the creators of MemGPT) is a platform for building stateful AI agents with advanced memory management. It introduces the concept of a memory hierarchy to LLMs, allowing agents to manage their own context window effectively and run indefinitely without “forgetting” core instructions or history.

The demo showcases a social agent built with Letta and powered by Gemini 3:

  • Persistent memory that evolves through interactions.
  • Multi‑tiered memory system that creates a stable persona.
  • Gemini 3 as the reasoning engine, using dynamic, per‑user memory blocks for personalized interactions.
  • State management across long‑term operations.

Letta social‑agent code example

6. mem0

mem0 logo

mem0 is a memory‑layer framework for AI applications. It solves one of the biggest hurdles in agentic AI: statelessness. By providing a smart, self‑improving memory layer, mem0 allows AI agents to remember user preferences, past interactions, and long‑term context, making them more personalized and effective.

In this guide you can learn how to build a fast, smart, memory‑aware agent by using the mem0-mcp-server with Gemini 3.

mem0 example code

Start Building Today

These examples show that the future of AI agents isn’t just about the model; it’s about the ecosystem of tools that let the model interact with the world.

We invite you to clone these repositories, run the examples, and see for yourself what Gemini 3 can do. For deeper technical implementation details, check out the Gemini 3 Developer Guide.

Back to Blog

Related posts

Read more »