From 4fd8d10f146c7281bf1d5d5c7642e0cccf9f0fa8 Mon Sep 17 00:00:00 2001 From: yukthagangadhari5 Date: Thu, 8 Jan 2026 18:42:40 +0530 Subject: [PATCH 1/2] docs: add beginner explanation for single agent example --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e9105d9c5a..331c00cc0c 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,11 @@ deploying agents: ## 🏁 Feature Highlight +**Beginner note:** +In ADK, an *agent* is a Python object that defines how your AI system behaves — +including its instructions, the tools it can use, and how it responds to users. +The example below shows the simplest way to define a single agent. + ### Define a single agent: ```python From f3f23af64ec515ae91bbab07cbfc3dc47a4240e5 Mon Sep 17 00:00:00 2001 From: Yuktha Gangadhari Date: Fri, 9 Jan 2026 10:55:10 +0530 Subject: [PATCH 2/2] docs: improve formatting of beginner note --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 331c00cc0c..32564fc1e2 100644 --- a/README.md +++ b/README.md @@ -98,10 +98,9 @@ deploying agents: ## 🏁 Feature Highlight -**Beginner note:** -In ADK, an *agent* is a Python object that defines how your AI system behaves — -including its instructions, the tools it can use, and how it responds to users. -The example below shows the simplest way to define a single agent. +> **Beginner note:** +> +> In ADK, an *agent* is a Python object that defines how your AI system behaves — including its instructions, the tools it can use, and how it responds to users. The example below shows the simplest way to define a single agent. ### Define a single agent: