diff --git a/a2a/README.md b/a2a/README.md
index d1f594b..f07776e 100644
--- a/a2a/README.md
+++ b/a2a/README.md
@@ -28,7 +28,7 @@ The sample uses **[Google ADK](https://google.github.io/adk-docs/)** (Agent Deve
| 📦 | UCP Fulfillment Capability: Implements dev.ucp.shopping.fulfillment for shipping address collection, delivery options, and fulfillment method selection. |
| 💳 | UCP Payment Handling: Supports PaymentInstrument types with configurable payment handlers and merchant business configuration via UCP profile. |
| 🤝 | Capability Negotiation: Client and merchant exchange UCP profiles at /.well-known/ucp to agree on supported features before transactions begin. |
-| 🤖 | Google ADK Agent: Gemini 2.5 Flash model with 8 shopping tools (search, checkout, payment) demonstrating how to build UCP-aware agents. |
+| 🤖 | Google ADK Agent: Gemini 3.0 Flash model with 8 shopping tools (search, checkout, payment) demonstrating how to build UCP-aware agents. |
| 🔗 | A2A Protocol: Agent discovery via /.well-known/agent-card.json and JSON-RPC 2.0 communication - showing UCP as an A2A extension. |
| 💻 | React Chat Client: TypeScript UI that renders UCP data types (Checkout, LineItem, PaymentResponse, OrderConfirmation) with proper capability handling. |
@@ -185,7 +185,7 @@ AI shopping assistant built with Google ADK, exposed via A2A interface with UCP
| File | Purpose |
|------|---------|
-| `agent.py` | ADK Agent with Gemini 2.5 Flash + 8 shopping tools |
+| `agent.py` | ADK Agent with Gemini 3.0 Flash + 8 shopping tools |
| `agent_executor.py` | Bridges ADK ↔ A2A protocol |
| `store.py` | Mock RetailStore (products, checkouts, orders) |
| `data/ucp.json` | UCP Profile served at `/.well-known/ucp` |
diff --git a/a2a/business_agent/src/business_agent/agent.py b/a2a/business_agent/src/business_agent/agent.py
index 5046e64..9f4f3b9 100644
--- a/a2a/business_agent/src/business_agent/agent.py
+++ b/a2a/business_agent/src/business_agent/agent.py
@@ -436,7 +436,7 @@ def modify_output_after_agent(
root_agent = Agent(
name="shopper_agent",
- model="gemini-2.5-flash",
+ model="gemini-3-flash-preview",
description="Agent to help with shopping",
instruction=(
"You are a helpful agent who can help user with shopping actions such"