Skip to content

Commit 4a00e97

Browse files
Merge branch 'main' into fix-litellm-azure-pdf-upload
2 parents c4153b2 + 66930e6 commit 4a00e97

99 files changed

Lines changed: 6593 additions & 475 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agents/skills/adk-sample-creator/SKILL.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ Categories include `workflows`, `patterns`, `core`, `multi_agent`, `tools`,
3737
samples nest one level further when a single feature needs several variants, as
3838
`plugins/plugin_reflect_tool_retry/basic/` does.
3939

40-
Name the sample directory in `snake_case`: `dynamic_nodes`, `fan_out_fan_in`.
40+
Name the sample directory in `snake_case` after the feature it demonstrates:
41+
`dynamic_nodes`, `fan_out_fan_in`, `streaming_tool_events`.
42+
43+
Do not add an `_agent` suffix, and do not repeat the category as a prefix —
44+
every sample is an agent, and the category is already in the path. Many existing
45+
directories still carry both; do not copy them.
4146

4247
## 2. Write `agent.py`
4348

.github/workflows/pr-triage.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@
1515
name: ADK Pull Request Triaging Agent
1616

1717
on:
18-
# React within seconds of a PR opening/updating so the owner is assigned
19-
# promptly. pull_request_target (not pull_request) is required so the run has
20-
# the base-repo token needed to assign on community fork PRs; this workflow
21-
# only reads PR metadata via the API and never checks out untrusted PR code.
18+
# React within seconds of a PR arriving so the owner is assigned promptly.
19+
# pull_request_target (not pull_request) is required so the run has the
20+
# base-repo token needed to assign on community fork PRs; this workflow only
21+
# reads PR metadata via the API and never checks out untrusted PR code.
22+
#
23+
# Only events that bring in a new PR are listed. Pushes to an open PR and a
24+
# periodic backfill would both re-assign an owner a maintainer had just taken
25+
# off, so removing an assignee has to stay a decision the agent cannot undo.
2226
pull_request_target:
23-
types: [opened, reopened, synchronize, ready_for_review]
24-
schedule:
25-
# Backfill every 6 hours in case an event was missed.
26-
- cron: '0 */6 * * *'
27+
types: [opened, reopened, ready_for_review]
2728
workflow_dispatch:
2829
inputs:
2930
pr_number:
@@ -36,8 +37,8 @@ on:
3637
default: '10'
3738
type: 'string'
3839

39-
# Never let two runs triage the same PR at once (e.g. rapid pushes); the
40-
# scheduled backfill still runs under its own group.
40+
# Never let two runs triage the same PR at once (e.g. a reopen right after an
41+
# open); a manually dispatched batch run gets its own group.
4142
concurrency:
4243
group: pr-triage-${{ github.event.pull_request.number || github.run_id }}
4344
cancel-in-progress: false

README.md

Lines changed: 86 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
[![PyPI downloads](https://static.pepy.tech/badge/google-adk/month)](https://pepy.tech/project/google-adk)
77
[![Continuous Integration](https://github.com/google/adk-python/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/google/adk-python/actions/workflows/continuous-integration.yml)
88
[![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://google.github.io/adk-docs/)
9+
[![r/agentdevelopmentkit](https://img.shields.io/badge/Reddit-r%2Fagentdevelopmentkit-FF4500?style=flat&logo=reddit&logoColor=white)](https://www.reddit.com/r/agentdevelopmentkit/)
10+
<a href="https://codewiki.google/github.com/google/adk-python"><img src="https://www.gstatic.com/_/boq-sdlc-agents-ui/_/r/Mvosg4klCA4.svg" alt="Ask Code Wiki" height="20"></a>
911

1012
<h2 align="center">
1113
<img src="https://raw.githubusercontent.com/google/adk-python/main/assets/agent-development-kit.png" width="256"/>
@@ -19,6 +21,19 @@
1921
<a href="https://github.com/google/adk-samples">Samples</a> &
2022
<a href="https://github.com/google/adk-web">ADK Web</a>.
2123
</h3>
24+
<h3 align="center">
25+
ADK in other languages:
26+
<a href="https://github.com/google/adk-java">ADK Java</a>,
27+
<a href="https://github.com/google/adk-kotlin">ADK Kotlin</a>,
28+
<a href="https://github.com/google/adk-go">ADK Go</a> &
29+
<a href="https://github.com/google/adk-js">ADK Typescript</a>.
30+
</h3>
31+
32+
Agent Development Kit (ADK) is a flexible and modular framework that applies
33+
software development principles to AI agent creation. It is designed to
34+
simplify building, deploying, and orchestrating agent workflows, from simple
35+
tasks to complex systems. While optimized for Gemini, ADK is model-agnostic,
36+
deployment-agnostic, and compatible with other frameworks.
2237

2338
______________________________________________________________________
2439

@@ -30,7 +45,7 @@ ______________________________________________________________________
3045
3146
______________________________________________________________________
3247

33-
## 🔥 What's New in 2.0
48+
## ✨ Key Features
3449

3550
- **Workflow Runtime**: A graph-based execution engine for composing
3651
deterministic execution flows for agentic apps, with support for routing,
@@ -41,8 +56,30 @@ ______________________________________________________________________
4156
mode, single-turn controlled output, mixed delegation patterns,
4257
human-in-the-loop, and task agents as workflow nodes.
4358

59+
- **Modular Multi-Agent Systems**: Design scalable applications by composing
60+
multiple specialized agents into flexible hierarchies.
61+
62+
- **Rich Tool Ecosystem**: Utilize pre-built tools, custom functions,
63+
OpenAPI specs, MCP tools or integrate existing tools to give agents diverse
64+
capabilities, all for tight integration with the Google ecosystem.
65+
66+
- **Code-First Development**: Define agent logic, tools, and orchestration
67+
directly in Python for ultimate flexibility, testability, and versioning.
68+
69+
- **Agent Config**: Build agents without code. Check out the
70+
[Agent Config](https://google.github.io/adk-docs/agents/config/) feature.
71+
72+
- **Tool Confirmation**: A [tool confirmation flow(HITL)](https://google.github.io/adk-docs/tools/confirmation/) that can guard tool execution with explicit confirmation and custom input.
73+
74+
- **Deploy Anywhere**: Easily containerize and deploy agents on Cloud Run or
75+
scale seamlessly with Vertex AI Agent Engine.
76+
4477
## 🚀 Installation
4578

79+
### Stable Release (Recommended)
80+
81+
You can install the latest stable version of ADK using `pip`:
82+
4683
```bash
4784
pip install google-adk
4885
```
@@ -69,6 +106,16 @@ pip install "google-adk[extensions]"
69106

70107
The release cadence is roughly bi-weekly.
71108

109+
### Development Version
110+
111+
Bug fixes and new features are merged into the main branch on GitHub first. If you need access to changes that haven't been included in an official PyPI release yet, you can install directly from the main branch:
112+
113+
```bash
114+
pip install git+https://github.com/google/adk-python.git@main
115+
```
116+
117+
Note: The development version is built directly from the latest code commits. While it includes the newest fixes and features, it may also contain experimental changes or bugs not present in the stable release. Use it primarily for testing upcoming changes or accessing critical fixes before they are officially released.
118+
72119
## Quick Start
73120

74121
> **Beginner Note:** ADK applications are built using two main classes:
@@ -118,6 +165,22 @@ adk run path/to/my_agent
118165
adk web path/to/agents_dir
119166
```
120167

168+
### Development UI
169+
170+
A built-in development UI to help you test, evaluate, debug, and showcase your agent(s).
171+
172+
[![ADK Web UI](https://raw.githubusercontent.com/google/adk-python/main/assets/adk-web-dev-ui.png)](https://youtu.be/TEjqk0eeNy8)
173+
174+
[![Watch on YouTube](https://img.shields.io/badge/YouTube-Watch%20ADK%20Web%20Demo-FF0000?style=flat&logo=youtube&logoColor=white)](https://youtu.be/TEjqk0eeNy8)
175+
176+
### Evaluate Agents
177+
178+
```bash
179+
adk eval \
180+
samples_for_testing/hello_world \
181+
samples_for_testing/hello_world/hello_world_eval_set_001.evalset.json
182+
```
183+
121184
## 📚 Documentation
122185

123186
- **Getting Started**: https://google.github.io/adk-docs/
@@ -131,9 +194,30 @@ adk web path/to/agents_dir
131194

132195
## 🤝 Contributing
133196

134-
See [CONTRIBUTING.md](CONTRIBUTING.md) for details.
197+
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, please see our:
198+
199+
- [General contribution guideline and flow](https://google.github.io/adk-docs/contributing-guide/).
200+
- [Code Contributing Guidelines](./CONTRIBUTING.md) to get started.
201+
202+
## Community Repo
203+
204+
We have [adk-python-community repo](https://github.com/google/adk-python-community) that is home to a growing ecosystem of community-contributed tools, third-party
205+
service integrations, and deployment scripts that extend the core capabilities
206+
of the ADK.
207+
208+
## Vibe Coding
209+
210+
If you want to develop agent via vibe coding the [llms.txt](./llms.txt) and the [llms-full.txt](./llms-full.txt) can be used as context to LLM. While the former one is a summarized one and the later one has the full information in case your LLM has big enough context window.
211+
212+
## Community Events
213+
214+
- [Completed] ADK's 1st community meeting on Wednesday, October 15, 2025. Remember to [join our group](https://groups.google.com/g/adk-community) to get access to the [recording](https://drive.google.com/file/d/1rpXDq5NSH8-MyMeYI6_5pZ3Lhn0X9BQf/view), and [deck](https://docs.google.com/presentation/d/1_b8LG4xaiadbUUDzyNiapSFyxanc9ZgFdw7JQ6zmZ9Q/edit?slide=id.g384e60cdaca_0_658&resourcekey=0-tjFFv0VBQhpXBPCkZr0NOg#slide=id.g384e60cdaca_0_658).
135215

136216
## 📄 License
137217

138218
This project is licensed under the Apache 2.0 License — see the
139219
[LICENSE](LICENSE) file for details.
220+
221+
______________________________________________________________________
222+
223+
*Happy Agent Building!*
-213 KB
Loading

assets/adk-web-dev-ui.png

200 KB
Loading

constraints-3.10.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile pyproject.toml --all-extras --python-version 3.10 --no-emit-package google-adk --exclude-newer 2026-07-26 --index-url https://pypi.org/simple -o constraints-3.10.txt
2+
# uv pip compile pyproject.toml --all-extras --python-version 3.10 --no-emit-package google-adk --exclude-newer 2026-08-09 --index-url https://pypi.org/simple -o constraints-3.10.txt
33
a2a-sdk==1.1.1
44
# via
55
# -c constraints-3.10.txt.stable.tmp
@@ -30,6 +30,7 @@ aiohttp==3.14.1
3030
# daytona-analytics-api-client-async
3131
# daytona-api-client-async
3232
# daytona-toolbox-api-client-async
33+
# google-adk
3334
# google-cloud-aiplatform
3435
# kubernetes
3536
# langchain-community
@@ -1478,6 +1479,7 @@ pyyaml==6.0.3
14781479
redis==5.3.1
14791480
# via
14801481
# -c constraints-3.10.txt.stable.tmp
1482+
# google-adk (pyproject.toml)
14811483
# google-adk-community
14821484
referencing==0.37.0
14831485
# via
@@ -1672,11 +1674,13 @@ sqlparse==0.5.5
16721674
sse-starlette==3.4.6
16731675
# via
16741676
# -c constraints-3.10.txt.stable.tmp
1677+
# a2a-sdk
16751678
# mcp
16761679
starlette==1.3.1
16771680
# via
16781681
# -c constraints-3.10.txt.stable.tmp
16791682
# google-adk (pyproject.toml)
1683+
# a2a-sdk
16801684
# fastapi
16811685
# google-adk
16821686
# mcp

constraints-3.11.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile pyproject.toml --all-extras --python-version 3.11 --no-emit-package google-adk --exclude-newer 2026-07-26 --index-url https://pypi.org/simple -o constraints-3.11.txt
2+
# uv pip compile pyproject.toml --all-extras --python-version 3.11 --no-emit-package google-adk --exclude-newer 2026-08-09 --index-url https://pypi.org/simple -o constraints-3.11.txt
33
a2a-sdk==1.1.1
44
# via
55
# -c constraints-3.11.txt.stable.tmp
@@ -31,6 +31,7 @@ aiohttp==3.14.1
3131
# daytona-analytics-api-client-async
3232
# daytona-api-client-async
3333
# daytona-toolbox-api-client-async
34+
# google-adk
3435
# google-cloud-aiplatform
3536
# instructor
3637
# kubernetes
@@ -1724,6 +1725,7 @@ pyyaml==6.0.3
17241725
redis==5.3.1
17251726
# via
17261727
# -c constraints-3.11.txt.stable.tmp
1728+
# google-adk (pyproject.toml)
17271729
# google-adk-community
17281730
referencing==0.37.0
17291731
# via
@@ -1942,11 +1944,13 @@ sqlparse==0.5.5
19421944
sse-starlette==3.4.6
19431945
# via
19441946
# -c constraints-3.11.txt.stable.tmp
1947+
# a2a-sdk
19451948
# mcp
19461949
starlette==1.3.1
19471950
# via
19481951
# -c constraints-3.11.txt.stable.tmp
19491952
# google-adk (pyproject.toml)
1953+
# a2a-sdk
19501954
# fastapi
19511955
# google-adk
19521956
# mcp

constraints-3.12.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile pyproject.toml --all-extras --python-version 3.12 --no-emit-package google-adk --exclude-newer 2026-07-26 --index-url https://pypi.org/simple -o constraints-3.12.txt
2+
# uv pip compile pyproject.toml --all-extras --python-version 3.12 --no-emit-package google-adk --exclude-newer 2026-08-09 --index-url https://pypi.org/simple -o constraints-3.12.txt
33
a2a-sdk==1.1.1
44
# via
55
# -c constraints-3.12.txt.stable.tmp
@@ -30,6 +30,7 @@ aiohttp==3.14.1
3030
# daytona-analytics-api-client-async
3131
# daytona-api-client-async
3232
# daytona-toolbox-api-client-async
33+
# google-adk
3334
# google-cloud-aiplatform
3435
# kubernetes
3536
# langchain-community
@@ -1466,6 +1467,7 @@ pyyaml==6.0.3
14661467
redis==5.3.1
14671468
# via
14681469
# -c constraints-3.12.txt.stable.tmp
1470+
# google-adk (pyproject.toml)
14691471
# google-adk-community
14701472
referencing==0.37.0
14711473
# via
@@ -1668,11 +1670,13 @@ sqlparse==0.5.5
16681670
sse-starlette==3.4.6
16691671
# via
16701672
# -c constraints-3.12.txt.stable.tmp
1673+
# a2a-sdk
16711674
# mcp
16721675
starlette==1.3.1
16731676
# via
16741677
# -c constraints-3.12.txt.stable.tmp
16751678
# google-adk (pyproject.toml)
1679+
# a2a-sdk
16761680
# fastapi
16771681
# google-adk
16781682
# mcp

constraints-3.13.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile pyproject.toml --all-extras --python-version 3.13 --no-emit-package google-adk --exclude-newer 2026-07-26 --index-url https://pypi.org/simple -o constraints-3.13.txt
2+
# uv pip compile pyproject.toml --all-extras --python-version 3.13 --no-emit-package google-adk --exclude-newer 2026-08-09 --index-url https://pypi.org/simple -o constraints-3.13.txt
33
a2a-sdk==1.1.1
44
# via
55
# -c constraints-3.13.txt.stable.tmp
@@ -30,6 +30,7 @@ aiohttp==3.14.1
3030
# daytona-analytics-api-client-async
3131
# daytona-api-client-async
3232
# daytona-toolbox-api-client-async
33+
# google-adk
3334
# google-cloud-aiplatform
3435
# kubernetes
3536
# langchain-community
@@ -1458,6 +1459,7 @@ pyyaml==6.0.3
14581459
redis==5.3.1
14591460
# via
14601461
# -c constraints-3.13.txt.stable.tmp
1462+
# google-adk (pyproject.toml)
14611463
# google-adk-community
14621464
referencing==0.37.0
14631465
# via
@@ -1659,11 +1661,13 @@ sqlparse==0.5.5
16591661
sse-starlette==3.4.6
16601662
# via
16611663
# -c constraints-3.13.txt.stable.tmp
1664+
# a2a-sdk
16621665
# mcp
16631666
starlette==1.3.1
16641667
# via
16651668
# -c constraints-3.13.txt.stable.tmp
16661669
# google-adk (pyproject.toml)
1670+
# a2a-sdk
16671671
# fastapi
16681672
# google-adk
16691673
# mcp

constraints-3.14.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile pyproject.toml --all-extras --python-version 3.14 --no-emit-package google-adk --exclude-newer 2026-07-26 --index-url https://pypi.org/simple -o constraints-3.14.txt
2+
# uv pip compile pyproject.toml --all-extras --python-version 3.14 --no-emit-package google-adk --exclude-newer 2026-08-09 --index-url https://pypi.org/simple -o constraints-3.14.txt
33
a2a-sdk==1.1.1
44
# via
55
# -c constraints-3.14.txt.stable.tmp
@@ -30,6 +30,7 @@ aiohttp==3.14.1
3030
# daytona-analytics-api-client-async
3131
# daytona-api-client-async
3232
# daytona-toolbox-api-client-async
33+
# google-adk
3334
# google-cloud-aiplatform
3435
# kubernetes
3536
# langchain-community
@@ -1458,6 +1459,7 @@ pyyaml==6.0.3
14581459
redis==5.3.1
14591460
# via
14601461
# -c constraints-3.14.txt.stable.tmp
1462+
# google-adk (pyproject.toml)
14611463
# google-adk-community
14621464
referencing==0.37.0
14631465
# via
@@ -1659,11 +1661,13 @@ sqlparse==0.5.5
16591661
sse-starlette==3.4.6
16601662
# via
16611663
# -c constraints-3.14.txt.stable.tmp
1664+
# a2a-sdk
16621665
# mcp
16631666
starlette==1.3.1
16641667
# via
16651668
# -c constraints-3.14.txt.stable.tmp
16661669
# google-adk (pyproject.toml)
1670+
# a2a-sdk
16671671
# fastapi
16681672
# google-adk
16691673
# mcp

0 commit comments

Comments
 (0)