google-adk 0.1.0__py3-none-any.whl → 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- google/adk/agents/base_agent.py +4 -4
- google/adk/agents/invocation_context.py +1 -1
- google/adk/agents/remote_agent.py +1 -1
- google/adk/agents/run_config.py +1 -1
- google/adk/auth/auth_preprocessor.py +2 -2
- google/adk/auth/auth_tool.py +1 -1
- google/adk/cli/browser/index.html +2 -2
- google/adk/cli/browser/{main-SLIAU2JL.js → main-ZBO76GRM.js} +65 -81
- google/adk/cli/cli_create.py +279 -0
- google/adk/cli/cli_deploy.py +4 -0
- google/adk/cli/cli_eval.py +2 -2
- google/adk/cli/cli_tools_click.py +67 -7
- google/adk/cli/fast_api.py +51 -16
- google/adk/cli/utils/envs.py +0 -3
- google/adk/cli/utils/evals.py +2 -2
- google/adk/evaluation/evaluation_generator.py +4 -4
- google/adk/evaluation/response_evaluator.py +15 -3
- google/adk/events/event.py +3 -3
- google/adk/flows/llm_flows/_nl_planning.py +10 -4
- google/adk/flows/llm_flows/contents.py +1 -1
- google/adk/models/lite_llm.py +51 -34
- google/adk/planners/plan_re_act_planner.py +2 -2
- google/adk/runners.py +1 -1
- google/adk/sessions/database_session_service.py +84 -23
- google/adk/sessions/state.py +1 -1
- google/adk/telemetry.py +2 -2
- google/adk/tools/application_integration_tool/clients/integration_client.py +3 -2
- google/adk/tools/base_tool.py +1 -1
- google/adk/tools/function_parameter_parse_util.py +2 -2
- google/adk/tools/google_api_tool/__init__.py +74 -1
- google/adk/tools/google_api_tool/google_api_tool_sets.py +91 -34
- google/adk/tools/google_api_tool/googleapi_to_openapi_converter.py +3 -1
- google/adk/tools/load_memory_tool.py +25 -2
- google/adk/tools/mcp_tool/mcp_session_manager.py +176 -0
- google/adk/tools/mcp_tool/mcp_tool.py +15 -2
- google/adk/tools/mcp_tool/mcp_toolset.py +31 -37
- google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py +1 -1
- google/adk/tools/toolbox_tool.py +1 -1
- google/adk/version.py +1 -1
- google_adk-0.2.0.dist-info/METADATA +212 -0
- {google_adk-0.1.0.dist-info → google_adk-0.2.0.dist-info}/RECORD +44 -42
- google_adk-0.1.0.dist-info/METADATA +0 -160
- {google_adk-0.1.0.dist-info → google_adk-0.2.0.dist-info}/WHEEL +0 -0
- {google_adk-0.1.0.dist-info → google_adk-0.2.0.dist-info}/entry_points.txt +0 -0
- {google_adk-0.1.0.dist-info → google_adk-0.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,212 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: google-adk
|
3
|
+
Version: 0.2.0
|
4
|
+
Summary: Agent Development Kit
|
5
|
+
Author-email: Google LLC <googleapis-packages@google.com>
|
6
|
+
Requires-Python: >=3.9
|
7
|
+
Description-Content-Type: text/markdown
|
8
|
+
Classifier: Typing :: Typed
|
9
|
+
Classifier: Intended Audience :: Developers
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
11
|
+
Classifier: Programming Language :: Python
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
18
|
+
Classifier: Operating System :: OS Independent
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
21
|
+
License-File: LICENSE
|
22
|
+
Requires-Dist: authlib>=1.5.1
|
23
|
+
Requires-Dist: click>=8.1.8
|
24
|
+
Requires-Dist: fastapi>=0.115.0
|
25
|
+
Requires-Dist: google-api-python-client>=2.157.0
|
26
|
+
Requires-Dist: google-cloud-aiplatform>=1.87.0
|
27
|
+
Requires-Dist: google-cloud-secret-manager>=2.22.0
|
28
|
+
Requires-Dist: google-cloud-speech>=2.30.0
|
29
|
+
Requires-Dist: google-cloud-storage>=2.18.0, <3.0.0
|
30
|
+
Requires-Dist: google-genai>=1.9.0
|
31
|
+
Requires-Dist: graphviz>=0.20.2
|
32
|
+
Requires-Dist: mcp>=1.5.0;python_version>='3.10'
|
33
|
+
Requires-Dist: opentelemetry-api>=1.31.0
|
34
|
+
Requires-Dist: opentelemetry-exporter-gcp-trace>=1.9.0
|
35
|
+
Requires-Dist: opentelemetry-sdk>=1.31.0
|
36
|
+
Requires-Dist: pydantic>=2.0, <3.0.0
|
37
|
+
Requires-Dist: python-dotenv>=1.0.0
|
38
|
+
Requires-Dist: PyYAML>=6.0.2
|
39
|
+
Requires-Dist: sqlalchemy>=2.0
|
40
|
+
Requires-Dist: tzlocal>=5.3
|
41
|
+
Requires-Dist: uvicorn>=0.34.0
|
42
|
+
Requires-Dist: flit>=3.10.0 ; extra == "dev"
|
43
|
+
Requires-Dist: isort>=6.0.0 ; extra == "dev"
|
44
|
+
Requires-Dist: pyink>=24.10.0 ; extra == "dev"
|
45
|
+
Requires-Dist: pylint>=2.6.0 ; extra == "dev"
|
46
|
+
Requires-Dist: autodoc_pydantic ; extra == "docs"
|
47
|
+
Requires-Dist: furo ; extra == "docs"
|
48
|
+
Requires-Dist: myst-parser ; extra == "docs"
|
49
|
+
Requires-Dist: sphinx ; extra == "docs"
|
50
|
+
Requires-Dist: sphinx-autodoc-typehints ; extra == "docs"
|
51
|
+
Requires-Dist: sphinx-rtd-theme ; extra == "docs"
|
52
|
+
Requires-Dist: google-cloud-aiplatform[evaluation]>=1.87.0 ; extra == "eval"
|
53
|
+
Requires-Dist: pandas>=2.2.3 ; extra == "eval"
|
54
|
+
Requires-Dist: tabulate>=0.9.0 ; extra == "eval"
|
55
|
+
Requires-Dist: anthropic>=0.43.0 ; extra == "extensions"
|
56
|
+
Requires-Dist: beautifulsoup4>=3.2.2 ; extra == "extensions"
|
57
|
+
Requires-Dist: crewai[tools] ; extra == "extensions" and (python_version>='3.10')
|
58
|
+
Requires-Dist: docker>=7.0.0 ; extra == "extensions"
|
59
|
+
Requires-Dist: langgraph>=0.2.60 ; extra == "extensions"
|
60
|
+
Requires-Dist: litellm>=1.63.11 ; extra == "extensions"
|
61
|
+
Requires-Dist: llama-index-readers-file>=0.4.0 ; extra == "extensions"
|
62
|
+
Requires-Dist: lxml>=5.3.0 ; extra == "extensions"
|
63
|
+
Requires-Dist: anthropic>=0.43.0 ; extra == "test"
|
64
|
+
Requires-Dist: langchain-community>=0.3.17 ; extra == "test"
|
65
|
+
Requires-Dist: langgraph>=0.2.60 ; extra == "test"
|
66
|
+
Requires-Dist: litellm>=1.63.11 ; extra == "test"
|
67
|
+
Requires-Dist: llama-index-readers-file>=0.4.0 ; extra == "test"
|
68
|
+
Requires-Dist: pytest-asyncio>=0.25.0 ; extra == "test"
|
69
|
+
Requires-Dist: pytest-mock>=3.14.0 ; extra == "test"
|
70
|
+
Requires-Dist: pytest-xdist>=3.6.1 ; extra == "test"
|
71
|
+
Requires-Dist: pytest>=8.3.4 ; extra == "test"
|
72
|
+
Project-URL: changelog, https://github.com/google/adk-python/blob/main/CHANGELOG.md
|
73
|
+
Project-URL: documentation, https://google.github.io/adk-docs/
|
74
|
+
Project-URL: homepage, https://google.github.io/adk-docs/
|
75
|
+
Project-URL: repository, https://github.com/google/adk-python
|
76
|
+
Provides-Extra: dev
|
77
|
+
Provides-Extra: docs
|
78
|
+
Provides-Extra: eval
|
79
|
+
Provides-Extra: extensions
|
80
|
+
Provides-Extra: test
|
81
|
+
|
82
|
+
# Agent Development Kit (ADK)
|
83
|
+
|
84
|
+
[](LICENSE)
|
85
|
+
[](https://github.com/google/adk-python/actions/workflows/python-unit-tests.yml)
|
86
|
+
[](https://www.reddit.com/r/agentdevelopmentkit/)
|
87
|
+
|
88
|
+
<html>
|
89
|
+
<h2 align="center">
|
90
|
+
<img src="https://raw.githubusercontent.com/google/adk-python/main/assets/agent-development-kit.png" width="256"/>
|
91
|
+
</h2>
|
92
|
+
<h3 align="center">
|
93
|
+
An open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.
|
94
|
+
</h3>
|
95
|
+
<h3 align="center">
|
96
|
+
Important Links:
|
97
|
+
<a href="https://google.github.io/adk-docs/">Docs</a> &
|
98
|
+
<a href="https://github.com/google/adk-samples">Samples</a>.
|
99
|
+
</h3>
|
100
|
+
</html>
|
101
|
+
|
102
|
+
Agent Development Kit (ADK) is designed for developers seeking fine-grained
|
103
|
+
control and flexibility when building advanced AI agents that are tightly
|
104
|
+
integrated with services in Google Cloud. It allows you to define agent
|
105
|
+
behavior, orchestration, and tool use directly in code, enabling robust
|
106
|
+
debugging, versioning, and deployment anywhere – from your laptop to the cloud.
|
107
|
+
|
108
|
+
|
109
|
+
---
|
110
|
+
|
111
|
+
## ✨ Key Features
|
112
|
+
|
113
|
+
- **Rich Tool Ecosystem**: Utilize pre-built tools, custom functions,
|
114
|
+
OpenAPI specs, or integrate existing tools to give agents diverse
|
115
|
+
capabilities, all for tight integration with the Google ecosystem.
|
116
|
+
|
117
|
+
- **Code-First Development**: Define agent logic, tools, and orchestration
|
118
|
+
directly in Python for ultimate flexibility, testability, and versioning.
|
119
|
+
|
120
|
+
- **Modular Multi-Agent Systems**: Design scalable applications by composing
|
121
|
+
multiple specialized agents into flexible hierarchies.
|
122
|
+
|
123
|
+
- **Deploy Anywhere**: Easily containerize and deploy agents on Cloud Run or
|
124
|
+
scale seamlessly with Vertex AI Agent Engine.
|
125
|
+
|
126
|
+
|
127
|
+
## 🚀 Installation
|
128
|
+
|
129
|
+
You can install the ADK using `pip`:
|
130
|
+
|
131
|
+
```bash
|
132
|
+
pip install google-adk
|
133
|
+
```
|
134
|
+
|
135
|
+
## 📚 Documentation
|
136
|
+
|
137
|
+
Explore the full documentation for detailed guides on building, evaluating, and
|
138
|
+
deploying agents:
|
139
|
+
|
140
|
+
* **[Documentation](https://google.github.io/adk-docs)**
|
141
|
+
|
142
|
+
## 🏁 Feature Highlight
|
143
|
+
|
144
|
+
### Define a single agent:
|
145
|
+
|
146
|
+
```python
|
147
|
+
from google.adk.agents import Agent
|
148
|
+
from google.adk.tools import google_search
|
149
|
+
|
150
|
+
root_agent = Agent(
|
151
|
+
name="search_assistant",
|
152
|
+
model="gemini-2.0-flash", # Or your preferred Gemini model
|
153
|
+
instruction="You are a helpful assistant. Answer user questions using Google Search when needed.",
|
154
|
+
description="An assistant that can search the web.",
|
155
|
+
tools=[google_search]
|
156
|
+
)
|
157
|
+
```
|
158
|
+
|
159
|
+
### Define a multi-agent system:
|
160
|
+
|
161
|
+
Define a multi-agent system with coordinator agent, greeter agent, and task execution agent. Then ADK engine and the model will guide the agents works together to accomplish the task.
|
162
|
+
|
163
|
+
```python
|
164
|
+
from google.adk.agents import LlmAgent, BaseAgent
|
165
|
+
|
166
|
+
# Define individual agents
|
167
|
+
greeter = LlmAgent(name="greeter", model="gemini-2.0-flash", ...)
|
168
|
+
task_executor = LlmAgent(name="task_executor", model="gemini-2.0-flash", ...)
|
169
|
+
|
170
|
+
# Create parent agent and assign children via sub_agents
|
171
|
+
coordinator = LlmAgent(
|
172
|
+
name="Coordinator",
|
173
|
+
model="gemini-2.0-flash",
|
174
|
+
description="I coordinate greetings and tasks.",
|
175
|
+
sub_agents=[ # Assign sub_agents here
|
176
|
+
greeter,
|
177
|
+
task_executor
|
178
|
+
]
|
179
|
+
)
|
180
|
+
```
|
181
|
+
|
182
|
+
### Development UI
|
183
|
+
|
184
|
+
A built-in development UI to help you test, evaluate, debug, and showcase your agent(s).
|
185
|
+
|
186
|
+
<img src="https://raw.githubusercontent.com/google/adk-python/main/assets/adk-web-dev-ui-function-call.png"/>
|
187
|
+
|
188
|
+
### Evaluate Agents
|
189
|
+
|
190
|
+
```bash
|
191
|
+
adk eval \
|
192
|
+
samples_for_testing/hello_world \
|
193
|
+
samples_for_testing/hello_world/hello_world_eval_set_001.evalset.json
|
194
|
+
```
|
195
|
+
|
196
|
+
|
197
|
+
## 🤝 Contributing
|
198
|
+
|
199
|
+
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, please see our [**Contributing Guidelines**](./CONTRIBUTING.md) to get started.
|
200
|
+
|
201
|
+
## 📄 License
|
202
|
+
|
203
|
+
This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.
|
204
|
+
|
205
|
+
## Preview
|
206
|
+
|
207
|
+
This feature is subject to the "Pre-GA Offerings Terms" in the General Service Terms section of the [Service Specific Terms](https://cloud.google.com/terms/service-terms#1). Pre-GA features are available "as is" and might have limited support. For more information, see the [launch stage descriptions](https://cloud.google.com/products?hl=en#product-launch-stages).
|
208
|
+
|
209
|
+
---
|
210
|
+
|
211
|
+
*Happy Agent Building!*
|
212
|
+
|
@@ -1,20 +1,20 @@
|
|
1
1
|
google/adk/__init__.py,sha256=sSPQK3r0tW8ahl-k8SXkZvMcbiTbGICCtrw6KkFucyg,726
|
2
|
-
google/adk/runners.py,sha256=
|
3
|
-
google/adk/telemetry.py,sha256=
|
4
|
-
google/adk/version.py,sha256=
|
2
|
+
google/adk/runners.py,sha256=EDCUtbe7dXjpBMCXodTFkDEC5cclJzLx5KmkBXUF0Lk,15505
|
3
|
+
google/adk/telemetry.py,sha256=P1192g-EJQPXNu3PCv3DXxea7VtsOP_oX6kGm3D6qxc,6285
|
4
|
+
google/adk/version.py,sha256=OkM6DUSdovwyRmMMgSlnveMzU4s_zDpSD56V0VSZ4KQ,621
|
5
5
|
google/adk/agents/__init__.py,sha256=WsCiBlvI-ISWrcntboo_sULvVJNwLNxXCe42UGPLKdY,1041
|
6
6
|
google/adk/agents/active_streaming_tool.py,sha256=AYrT9aCFBzaESFzkMTil_fuK1zDoKDfZQaQXL3_Jxog,1159
|
7
|
-
google/adk/agents/base_agent.py,sha256=
|
7
|
+
google/adk/agents/base_agent.py,sha256=qN4P0x515T6xWV2XMBFrTduYaEKqQOTnKZWNQqKkvpI,10570
|
8
8
|
google/adk/agents/callback_context.py,sha256=RKO_7-3Svg7F9csGGit1Nrus8biZn2z8NCu3m_jn-kc,3609
|
9
|
-
google/adk/agents/invocation_context.py,sha256=
|
9
|
+
google/adk/agents/invocation_context.py,sha256=W4VMfFGecRoSX_rwDIgACzxPIMtMin84eADAX-zHj9Y,6173
|
10
10
|
google/adk/agents/langgraph_agent.py,sha256=CU3onlHGBp61-SgHHJQu6f2KrFXp5qrDYI9nGvLGQC4,4252
|
11
11
|
google/adk/agents/live_request_queue.py,sha256=auQnKALpHQSCh__7CikfGgteqErZaPsivQ7goFySlXI,2074
|
12
12
|
google/adk/agents/llm_agent.py,sha256=7OkwfsWkl2Dy9hP6F78dPqkDgvkXrHkVps9MAT3duUg,12266
|
13
13
|
google/adk/agents/loop_agent.py,sha256=IjmcFQ-vFeXXKuCb7pYOH1vJUdUUEx4sQaynZ7n0cKU,1940
|
14
14
|
google/adk/agents/parallel_agent.py,sha256=PVwlpAO1es7cPsGlK_Pax0sAmPsprn2X6v3cNxRDC3Y,2981
|
15
15
|
google/adk/agents/readonly_context.py,sha256=O5n4Eupq-lWRoMi1MSA3lZu_DoMtcXYpRoK8wknSLX8,1409
|
16
|
-
google/adk/agents/remote_agent.py,sha256=
|
17
|
-
google/adk/agents/run_config.py,sha256=
|
16
|
+
google/adk/agents/remote_agent.py,sha256=LawMfVOp8CUeSk4g159BYOOIsHtxDo-ab7e6CwsYdhU,1494
|
17
|
+
google/adk/agents/run_config.py,sha256=l1G-87cYRJz1S2tCax-c4riJv3MbG4DAgisBFSw7Hpw,2915
|
18
18
|
google/adk/agents/sequential_agent.py,sha256=wlinEKlMlpKyNyzqjPmGO7xpCQpUvXxIwqiazZvXiKQ,1388
|
19
19
|
google/adk/agents/transcription_entry.py,sha256=JQahrPoqllljN2mQf9yI9Y7bX3Fhllez6rQGpslzeVw,1060
|
20
20
|
google/adk/artifacts/__init__.py,sha256=D5DYoVYR0tOd2E_KwRu0Cp7yvV25KGuIQmQeCRDyK-k,846
|
@@ -24,27 +24,28 @@ google/adk/artifacts/in_memory_artifact_service.py,sha256=aiA2PtjuL_dWndoMuB-00H
|
|
24
24
|
google/adk/auth/__init__.py,sha256=GoFe0aZGdp0ExNE4rXNn1RuXLaB64j7Z-2C5e2Hsh8c,908
|
25
25
|
google/adk/auth/auth_credential.py,sha256=oOBR5VgsYr1rUrWrddBjKOHf4mym49VhRfT_RAIrEaU,6671
|
26
26
|
google/adk/auth/auth_handler.py,sha256=rzTlrdjMncvGlHbKXzHNIAMaUbMmJJvDqYHSaXzn68k,9322
|
27
|
-
google/adk/auth/auth_preprocessor.py,sha256=
|
27
|
+
google/adk/auth/auth_preprocessor.py,sha256=qnmr-MQwxegC4ZRF7D05xOzDnKizqysl4KOBiL9TF8I,4171
|
28
28
|
google/adk/auth/auth_schemes.py,sha256=dxx9bxjOWoae1fSVxbpaVTwa0I4v76_QJJFEX--1ueA,2260
|
29
|
-
google/adk/auth/auth_tool.py,sha256=
|
29
|
+
google/adk/auth/auth_tool.py,sha256=GQU3Px9Xv1VcXAcd8MdpvmwuRon1rRpPDeg3xDSYJP8,2265
|
30
30
|
google/adk/cli/__init__.py,sha256=ouPYnIY02VmGNfpA6IT8oSQdfeZd1LHVoDSt_x8zQPU,609
|
31
31
|
google/adk/cli/__main__.py,sha256=gN8rRWlkh_3gLI-oYByxrKpCW9BIfDwrr0YuyisxmHo,646
|
32
32
|
google/adk/cli/agent_graph.py,sha256=H5gvs2wG6ks3F6pk14f33txmvAN9rr0_2H2fNMF96VE,4754
|
33
33
|
google/adk/cli/cli.py,sha256=FHKi-ZP-ieP2fS_zJIVJRBC06v9il0vN7Y7IcdBnZKw,5822
|
34
|
-
google/adk/cli/
|
35
|
-
google/adk/cli/
|
36
|
-
google/adk/cli/
|
37
|
-
google/adk/cli/
|
34
|
+
google/adk/cli/cli_create.py,sha256=S5sAKIzTjaf3bWoh6nUCSxm9koxdkN0SkTnOtsl0Oqs,8010
|
35
|
+
google/adk/cli/cli_deploy.py,sha256=UIYR0U20NbGhYbZqV5OuzOppPzhyjx9S6Rlu3sArYlE,5128
|
36
|
+
google/adk/cli/cli_eval.py,sha256=8bvIXNG8Z1vCE0eNN_Vh4YL3zcuVoHwL9XKdiHpyF4Q,9218
|
37
|
+
google/adk/cli/cli_tools_click.py,sha256=tzFv7cgB4QqiFI4h3fzY0Ci2Gipk4AqxxUqs427ETdw,15508
|
38
|
+
google/adk/cli/fast_api.py,sha256=7RaZ5-Q8TVSMlI17o08BnJxk-Q1tjRVV1IwnQ7MEtN8,26709
|
38
39
|
google/adk/cli/browser/adk_favicon.svg,sha256=giyzTZ5Xe6HFU63NgTIZDm35L-RmID-odVFOZ4vMo1M,3132
|
39
|
-
google/adk/cli/browser/index.html,sha256=
|
40
|
-
google/adk/cli/browser/main-
|
40
|
+
google/adk/cli/browser/index.html,sha256=47ugGu0EKzQM6NxFWPcwn-bBA_wqJdqTxg2q6aBcJ1A,18483
|
41
|
+
google/adk/cli/browser/main-ZBO76GRM.js,sha256=3KIO-Z5XlECesYesnQ3Z36klQMCSpwtcS2Nb26xoKBA,2472704
|
41
42
|
google/adk/cli/browser/polyfills-FFHMD2TL.js,sha256=6tcwOogi31Djphkq1hP2H5TxfN1MBg3P4YYrxHNdH5M,35115
|
42
43
|
google/adk/cli/browser/styles-4VDSPQ37.css,sha256=QF3xmtXMt44nFiCh0aKnvQwQiZptr3sW1u9bzltukAI,5522
|
43
44
|
google/adk/cli/browser/assets/audio-processor.js,sha256=BTYefpDeOz7VQveAoC_WFleLY9JkJs_FuGS0oQiadIA,1769
|
44
45
|
google/adk/cli/browser/assets/config/runtime-config.json,sha256=obOpZdzA-utX_wG6I687-5W7i1f8W9ixXOb7ky7rdvU,22
|
45
46
|
google/adk/cli/utils/__init__.py,sha256=2PrkBZeLjc3mXZMDJkev3IKgd07d4CheASgTB3tqz8Y,1528
|
46
|
-
google/adk/cli/utils/envs.py,sha256=
|
47
|
-
google/adk/cli/utils/evals.py,sha256=
|
47
|
+
google/adk/cli/utils/envs.py,sha256=S8_aqTZL8bQ4-FDYpgmNzPBTrz2UlMbV0Dg5sx-9p_0,1683
|
48
|
+
google/adk/cli/utils/evals.py,sha256=Ruq2DJLrbXoBYYZY9_0JNMa0DNpY2zp0htx1Gfs0mjA,3350
|
48
49
|
google/adk/cli/utils/logs.py,sha256=J6JpYaRhnPztlQQRuF1_Z05Oo-lKWHohfWLOR5tCgcE,2149
|
49
50
|
google/adk/code_executors/__init__.py,sha256=wqLHiAx2EmwcRfyUwhBYACPGidGgBU8smRTHH8sV21s,1542
|
50
51
|
google/adk/code_executors/base_code_executor.py,sha256=QLpgVcFNI5V21U-kVleze24ADeuDKgE3wI7Uui6vUeo,3030
|
@@ -56,11 +57,11 @@ google/adk/code_executors/vertex_ai_code_executor.py,sha256=CvPv0cZw-PjPxMFzf01e
|
|
56
57
|
google/adk/evaluation/__init__.py,sha256=h39Lgl_gUiF2OVyJi5nJMKZBgNwKpeo9Bt3YN4JdKng,1004
|
57
58
|
google/adk/evaluation/agent_evaluator.py,sha256=PS8MobbBtrRB8t1biSe-2k7yHtyCooYvY9MeKKPdWjc,11490
|
58
59
|
google/adk/evaluation/evaluation_constants.py,sha256=P5f9V-0JS9Hre1InJc4-aSHwI3Laedbp5huzEX1FnqI,856
|
59
|
-
google/adk/evaluation/evaluation_generator.py,sha256=
|
60
|
-
google/adk/evaluation/response_evaluator.py,sha256=
|
60
|
+
google/adk/evaluation/evaluation_generator.py,sha256=lnggY7OFtrQdZON6RO6ZCfuN-UpeJQbHJpc2zm4Aza8,9243
|
61
|
+
google/adk/evaluation/response_evaluator.py,sha256=IxJMHefp2Eaz0-5XQ36p1TXyQDx6ryc4a53OiXcZQXs,4899
|
61
62
|
google/adk/evaluation/trajectory_evaluator.py,sha256=UWnLOS7VZsPwXkvNUMpemGnc-Ovlr0py412v4OHT_VE,5410
|
62
63
|
google/adk/events/__init__.py,sha256=Lh0rh6RAt5DIxbwBUajjGMbB6bZW5K4Qli6PD_Jv74Q,688
|
63
|
-
google/adk/events/event.py,sha256=
|
64
|
+
google/adk/events/event.py,sha256=BjbDWV8KYB6i6sKH0YMNhWE4YUrsLFpWfymjJ7moZIk,4555
|
64
65
|
google/adk/events/event_actions.py,sha256=k8kn-jXPHDslvv2InUIgaNUyCj7oR86YveqyTl3-cOQ,1889
|
65
66
|
google/adk/examples/__init__.py,sha256=LCuLG_SOF9OAV3vc1tHAaBAOeQEZl0MFHC2LGmZ6e-A,851
|
66
67
|
google/adk/examples/base_example_provider.py,sha256=MkY_4filPUOd_M_YgK-pJpOuNxvD1b8sp_pty-BNnmM,1073
|
@@ -71,13 +72,13 @@ google/adk/flows/__init__.py,sha256=hDKKnwuWGIioev3K1jWuv-pLc7o_OKf71OYj_qWyOSw,
|
|
71
72
|
google/adk/flows/llm_flows/__init__.py,sha256=KLTQguz-10H8LbB6Ou-rjyJzX6rx9N1G5BRVWJTKdho,729
|
72
73
|
google/adk/flows/llm_flows/_base_llm_processor.py,sha256=Y7p-zwW7MxLB3vLlZthSdCjqjqMRl0DaoSVNCzyADw0,1770
|
73
74
|
google/adk/flows/llm_flows/_code_execution.py,sha256=qQFFYS2JCEBLcgD8fsZpRKmeVJVXglSb0FSF16jBslo,14821
|
74
|
-
google/adk/flows/llm_flows/_nl_planning.py,sha256=
|
75
|
+
google/adk/flows/llm_flows/_nl_planning.py,sha256=sGKa-wkVuDqlb6e9OadKAYhIAM2xD0iqtYBm0MJRszo,4078
|
75
76
|
google/adk/flows/llm_flows/agent_transfer.py,sha256=GsLWu-I1D6tATf9E0l9fBq8HE0iFKu0Z2X_n0B6k_sE,3901
|
76
77
|
google/adk/flows/llm_flows/audio_transcriber.py,sha256=uEa6727OIHaiShvT3w4S8bDz-QnZWHdNsDDwyXHzW7I,3483
|
77
78
|
google/adk/flows/llm_flows/auto_flow.py,sha256=CnuFelyZhB_ns4U_5_dW0x_KQlzu02My7qWcB4XBCYY,1714
|
78
79
|
google/adk/flows/llm_flows/base_llm_flow.py,sha256=Uk-Vc0BTPJO1b5LZO0ogJ-j9EyOAzESwu6ouTNUxaFg,19351
|
79
80
|
google/adk/flows/llm_flows/basic.py,sha256=79DM3qVOspJn2bHWMPptWDJRuFQxdX7ZYM1h-V8X9QQ,2344
|
80
|
-
google/adk/flows/llm_flows/contents.py,sha256=
|
81
|
+
google/adk/flows/llm_flows/contents.py,sha256=Bp_OeHKJypJm0MYyqJ2YAJLaD9o1LG7gKu0d8lGfFGg,12880
|
81
82
|
google/adk/flows/llm_flows/functions.py,sha256=itOKNKDsmtJb614cHy67uKlyFUcqvpLsv7YFz67cGXQ,15970
|
82
83
|
google/adk/flows/llm_flows/identity.py,sha256=X4CRg12NvnopmydU9gbFJI4lW1_otN-w_GOAuPvKrXo,1651
|
83
84
|
google/adk/flows/llm_flows/instructions.py,sha256=76Pvgq57ZlQulVBU92YQzKy0ozol00P0La3GLHtj_bk,4434
|
@@ -92,41 +93,41 @@ google/adk/models/base_llm.py,sha256=ckyXjogAz28v5A2ijQmu7K78lE0VcLGfEdR8ynJtqK8
|
|
92
93
|
google/adk/models/base_llm_connection.py,sha256=_zBmSa4RLfnadXG0_hsJLP_x_1UMtoLKagouIp0Y0-g,2252
|
93
94
|
google/adk/models/gemini_llm_connection.py,sha256=s27-l-liThQ39WuBVUK_u6bMLXTRgojW4I3upbH0C_c,6825
|
94
95
|
google/adk/models/google_llm.py,sha256=vVENYoslt-WXsoLa74J0dQcom4c6zJsE5IgUMGxVuBY,10164
|
95
|
-
google/adk/models/lite_llm.py,sha256=
|
96
|
+
google/adk/models/lite_llm.py,sha256=YhTgHm9237koREtBtY3IwkRMq2qFKOWNNyPGhjGfS80,19356
|
96
97
|
google/adk/models/llm_request.py,sha256=VGmXaupKLunv9Q4fdb8VDgLK0NUsHCY2_-DMMdE7VcY,2999
|
97
98
|
google/adk/models/llm_response.py,sha256=nLIGiH9JnVFqBwnyqhg0grLydUZCODvw3gMbhkXazKE,3775
|
98
99
|
google/adk/models/registry.py,sha256=kIMqGxX_S2MsYwCwG64_0O471OCt1ljWns548Keazgs,2526
|
99
100
|
google/adk/planners/__init__.py,sha256=6G_uYtLawi99HcgGGCOxcNleNezD2IaYLKz0P8nFkPQ,788
|
100
101
|
google/adk/planners/base_planner.py,sha256=cGlgxgxb_EAI8gkgiCpnLaf_rLs0U64yg94X32kGY2I,1961
|
101
102
|
google/adk/planners/built_in_planner.py,sha256=i1JDtv9_pbSspxsqxxAjrknlTjh_ClL0J8uUumr7qMU,2371
|
102
|
-
google/adk/planners/plan_re_act_planner.py,sha256=
|
103
|
+
google/adk/planners/plan_re_act_planner.py,sha256=i2DtzdyqNQsl1nV12Ty1ayEvjDMNFfnb8H2-PP9aNXQ,8478
|
103
104
|
google/adk/sessions/__init__.py,sha256=hbSFrzrbKbpL-akrCD1SYxjk92BVvzGxJzuuwn5dmEI,1248
|
104
105
|
google/adk/sessions/base_session_service.py,sha256=0UuEXFRaXwO16PJntUk9VtPZDiCa1tkLnvvnjqCQjtA,3579
|
105
|
-
google/adk/sessions/database_session_service.py,sha256=
|
106
|
+
google/adk/sessions/database_session_service.py,sha256=13V4CU8pnFQdmrVNFfPC2XZiAs-EIazuA_CzDgBvx34,19073
|
106
107
|
google/adk/sessions/in_memory_session_service.py,sha256=4_wvZRBya2W-lYcGkIcCvdueHMN-GN2n9vcpehNmP3o,6398
|
107
108
|
google/adk/sessions/session.py,sha256=H3nm9u-0JMbd0HZygsVdnkcdO78xraoNaDSmjor6lCA,1710
|
108
|
-
google/adk/sessions/state.py,sha256=
|
109
|
+
google/adk/sessions/state.py,sha256=p8KktAGvTiHo32akfSX0wPgJohzpMNGQ6teJK-LRQ-0,2298
|
109
110
|
google/adk/sessions/vertex_ai_session_service.py,sha256=UHRAQxvtADoe0dYwdKHPGPJ4D1KTgeapq-19IqyZlOc,11090
|
110
111
|
google/adk/tools/__init__.py,sha256=IpyRAQ29HdslRGMQd2RwAEVV3rvgSQdJuAulJLn_brM,1825
|
111
112
|
google/adk/tools/_automatic_function_calling_util.py,sha256=Cf6bBNuBggMCKPK26-T-Y0EKGTFqNvhPhMhL0s4cYAM,10882
|
112
113
|
google/adk/tools/agent_tool.py,sha256=WaR-0D7HvddxF-wfocan4pBkuRll_LG5q7qDNHOX_oQ,5851
|
113
|
-
google/adk/tools/base_tool.py,sha256=
|
114
|
+
google/adk/tools/base_tool.py,sha256=AnEXzXXTEYn2brfZp3rjLw9yCG6znU0NbeazBvofqHU,4456
|
114
115
|
google/adk/tools/built_in_code_execution_tool.py,sha256=oPkLz9EEHQE6vjidUwjHLrHWFLm6NNDHWddvRRAt6UY,1902
|
115
116
|
google/adk/tools/crewai_tool.py,sha256=CAOcizXvW_cQts5lFpS9IYcX71q_7eHoBxvFasdTBX8,2293
|
116
117
|
google/adk/tools/example_tool.py,sha256=gaG68obDbI29omDRmtoGSDEe1BFTV4MXk1JkfcoztFM,1947
|
117
118
|
google/adk/tools/exit_loop_tool.py,sha256=qjeQsHiOt6qgjlgNSQ0HhxyVt-X-JTwaSGo5--j2SpA,784
|
118
|
-
google/adk/tools/function_parameter_parse_util.py,sha256=
|
119
|
+
google/adk/tools/function_parameter_parse_util.py,sha256=kLFtIA9O1AtBRA8_mcSjDhV_dZoIv1cH68NLIsj_bmk,10640
|
119
120
|
google/adk/tools/function_tool.py,sha256=Nfiz4qrxKXYF8gRdvoR9Bc6gEfJe5Ve4_gL1MI_eEdA,2766
|
120
121
|
google/adk/tools/get_user_choice_tool.py,sha256=RuShc25aJB1ZcB_t38y8e75O1uFTNimyZbiLEbZMntg,993
|
121
122
|
google/adk/tools/google_search_tool.py,sha256=0DeRgDhqxraQ-9waYp4hfgEssxNYddrpsHxDtrHsZEc,2282
|
122
123
|
google/adk/tools/langchain_tool.py,sha256=Hq4VHnMTFsN1vSBEO-QSnzhs1lS59n-yHFswq5gHtO4,2842
|
123
124
|
google/adk/tools/load_artifacts_tool.py,sha256=OueIF1KNPz97iRB0F0hbDKbo7UPZGIQfvc_yPpvPFGc,3710
|
124
|
-
google/adk/tools/load_memory_tool.py,sha256=
|
125
|
+
google/adk/tools/load_memory_tool.py,sha256=qwaSM3Uz90-EnhWbnRnlYbqNIzoh902_fg-vR7QhKtQ,2290
|
125
126
|
google/adk/tools/load_web_page.py,sha256=PiIX6KzHqBPy0cdskhXtT3RWUOTGS4RTbzFQGHG80pU,1263
|
126
127
|
google/adk/tools/long_running_tool.py,sha256=au3THXaV_uRsC3Q-v4rSz6Tt895vSd2xz-85nyWKSJ4,1309
|
127
128
|
google/adk/tools/preload_memory_tool.py,sha256=k7dCNW2XBgxQ-TtOJkJGq9xfU1z6gAsAmXKzmy-IFMg,2239
|
128
129
|
google/adk/tools/tool_context.py,sha256=koVZiB05SpcR0sSrLHGpz8btDQXjc4-7MF5mKa9YS1g,3596
|
129
|
-
google/adk/tools/toolbox_tool.py,sha256=
|
130
|
+
google/adk/tools/toolbox_tool.py,sha256=6Q3CSal0pAs6BjSJDC5oyYPHd_JRCTv9BbwLzHcFbcE,1428
|
130
131
|
google/adk/tools/transfer_to_agent_tool.py,sha256=V2XBCoQ5jV8qlCE3qX82TPJvglnyI-KqKYYMq-swxCY,863
|
131
132
|
google/adk/tools/vertex_ai_search_tool.py,sha256=8i3dRzH0dQBYxg7OZ2O1TzjB9KvxzVX0QUjChUz5Er4,3268
|
132
133
|
google/adk/tools/apihub_tool/__init__.py,sha256=89tWC4Mm-MYoJ9Al_b8nbqFLeTgPO0-j411SkLuuzaQ,653
|
@@ -137,16 +138,17 @@ google/adk/tools/apihub_tool/clients/secret_client.py,sha256=U1YsWUJvq2mmLRQETX9
|
|
137
138
|
google/adk/tools/application_integration_tool/__init__.py,sha256=r_xoeFyCL4sHuWQAlCeMUJRO1je7eayqy6ffxYyhByA,702
|
138
139
|
google/adk/tools/application_integration_tool/application_integration_toolset.py,sha256=wWVhoRq3US4unAGcTuOnurHdy2uieifVHJOlwsVHIXU,8615
|
139
140
|
google/adk/tools/application_integration_tool/clients/connections_client.py,sha256=DwnzG6RQVPUd87O7Y0-d4GzYL5oeBPJKmecAmYwC45Q,31763
|
140
|
-
google/adk/tools/application_integration_tool/clients/integration_client.py,sha256=
|
141
|
-
google/adk/tools/google_api_tool/__init__.py,sha256=
|
141
|
+
google/adk/tools/application_integration_tool/clients/integration_client.py,sha256=GkFHqcTWDu3jlRcYUEEyEbFU6_-HrOlcMve-sRuo1q4,10639
|
142
|
+
google/adk/tools/google_api_tool/__init__.py,sha256=nv6nv42vii1ECjXgKhC6Dv343f7kAiMNDn0gxJ0omnE,2584
|
142
143
|
google/adk/tools/google_api_tool/google_api_tool.py,sha256=CeVKiXxqOZ5hQWHMdmT_Ld5TQDiv7NBucKEpHBEW0G8,1876
|
143
144
|
google/adk/tools/google_api_tool/google_api_tool_set.py,sha256=oTwHQNiWT5V3412HPO6Y-5t-oqV-Jr7SOWH7aKFN6Os,3616
|
144
|
-
google/adk/tools/google_api_tool/google_api_tool_sets.py,sha256=
|
145
|
-
google/adk/tools/google_api_tool/googleapi_to_openapi_converter.py,sha256=
|
145
|
+
google/adk/tools/google_api_tool/google_api_tool_sets.py,sha256=iW6kf0rjh3RzeOZMRqgHfmccS6jA1UcScQ3nfBruUHo,3152
|
146
|
+
google/adk/tools/google_api_tool/googleapi_to_openapi_converter.py,sha256=Xcea8QmkrF0uwDmRBgdFHn__V_dMX56RSVXjVUzFG0s,16412
|
146
147
|
google/adk/tools/mcp_tool/__init__.py,sha256=IsiZy3XvGhrdrp8AGd9596aXacro4x2VbKeWU2cH3wk,1190
|
147
148
|
google/adk/tools/mcp_tool/conversion_utils.py,sha256=utge8KGqp15uBhi9UORccOoZ66dCA0-TUhfFrznDQjI,5222
|
148
|
-
google/adk/tools/mcp_tool/
|
149
|
-
google/adk/tools/mcp_tool/
|
149
|
+
google/adk/tools/mcp_tool/mcp_session_manager.py,sha256=gLqEuEHI5Ud8tusstcseYp5tUG-jeQnAOVtAQXcdF1g,5389
|
150
|
+
google/adk/tools/mcp_tool/mcp_tool.py,sha256=pNzuCSM34_daNx28xdP85i4YMyzW1WuISehrnVjMs7E,4131
|
151
|
+
google/adk/tools/mcp_tool/mcp_toolset.py,sha256=kWAMFVxvcC4e4LOp4vGxAUgq3lhg9YbCdSzg74gabM0,7423
|
150
152
|
google/adk/tools/openapi_tool/__init__.py,sha256=UMsewNCQjd-r1GBX1OMuUJTzJ0AlQuegIc98g04-0oU,724
|
151
153
|
google/adk/tools/openapi_tool/auth/__init__.py,sha256=NVRXscqN4V0CSCvIp8J_ee8Xyw4m-OGoZn7SmrtOsQk,637
|
152
154
|
google/adk/tools/openapi_tool/auth/auth_helpers.py,sha256=73GGGxvLZWH_YW7BEObAY-rVz3r401dm98kl5oq-nwM,15901
|
@@ -161,15 +163,15 @@ google/adk/tools/openapi_tool/openapi_spec_parser/__init__.py,sha256=S89I_GQukqn
|
|
161
163
|
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_spec_parser.py,sha256=OomWa0rYWPPTs16pzT-3AvIcXwJeYBoQQgBy0R3opdI,7881
|
162
164
|
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py,sha256=jhCIqmJxyTJiyKwKHVfTb8IiNmztgJjDFxsw3Q8I6-s,4794
|
163
165
|
google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py,sha256=Wsp83l0BfYEp7_AEicpcA-J4JU5wO4sAtXm67xMuWWw,8687
|
164
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py,sha256=
|
166
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py,sha256=o5VOA0mkFNv7U3hb9otr8b_WblxL3ZSGFImjHJ6DpYM,17523
|
165
167
|
google/adk/tools/openapi_tool/openapi_spec_parser/tool_auth_handler.py,sha256=XM0Wo7lCswS9XTsrho8jlBd8PV68I4vohI4Ao-55nlU,9118
|
166
168
|
google/adk/tools/retrieval/__init__.py,sha256=vHWHIFl9KEnlPw0kBHVo0q5FqPCUY_lNeL4YeuhQRK0,1172
|
167
169
|
google/adk/tools/retrieval/base_retrieval_tool.py,sha256=4aar8Kg-6rQG7Ht1n18D5fvJnuffodFdSjeCp-GzA7w,1174
|
168
170
|
google/adk/tools/retrieval/files_retrieval.py,sha256=bucma_LL7aw15GQnYwgpDP1Lo9UqN-RFlG3w1w0sWfw,1158
|
169
171
|
google/adk/tools/retrieval/llama_index_retrieval.py,sha256=r9HUQXqygxizX0OXz7pJAWxzRRwmofAtFa3UvRR2di0,1304
|
170
172
|
google/adk/tools/retrieval/vertex_ai_rag_retrieval.py,sha256=FzLpZctWX232wn24M-CvjV8s1StivNy8H7e5IqgWphg,3340
|
171
|
-
google_adk-0.
|
172
|
-
google_adk-0.
|
173
|
-
google_adk-0.
|
174
|
-
google_adk-0.
|
175
|
-
google_adk-0.
|
173
|
+
google_adk-0.2.0.dist-info/entry_points.txt,sha256=zL9CU-6V2yQ2oc5lrcyj55ROHrpiIePsvQJ4H6SL-zI,43
|
174
|
+
google_adk-0.2.0.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
175
|
+
google_adk-0.2.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
176
|
+
google_adk-0.2.0.dist-info/METADATA,sha256=Eo_Ps0kKPlf8HsVg9oQ9hYQvzSCsl7AvhY39Nn0xAKA,8297
|
177
|
+
google_adk-0.2.0.dist-info/RECORD,,
|
@@ -1,160 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: google-adk
|
3
|
-
Version: 0.1.0
|
4
|
-
Summary: Agent Development Kit
|
5
|
-
Author-email: Google LLC <googleapis-packages@google.com>
|
6
|
-
Requires-Python: >=3.9
|
7
|
-
Description-Content-Type: text/markdown
|
8
|
-
Classifier: Typing :: Typed
|
9
|
-
Classifier: Intended Audience :: Developers
|
10
|
-
Classifier: Intended Audience :: Science/Research
|
11
|
-
Classifier: Programming Language :: Python
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
14
|
-
Classifier: Programming Language :: Python :: 3.13
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
18
|
-
Classifier: Operating System :: OS Independent
|
19
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
21
|
-
License-File: LICENSE
|
22
|
-
Requires-Dist: authlib>=1.5.1
|
23
|
-
Requires-Dist: click>=8.1.8
|
24
|
-
Requires-Dist: fastapi>=0.115.0
|
25
|
-
Requires-Dist: google-api-python-client>=2.157.0
|
26
|
-
Requires-Dist: google-cloud-aiplatform>=1.87.0
|
27
|
-
Requires-Dist: google-cloud-secret-manager>=2.22.0
|
28
|
-
Requires-Dist: google-cloud-speech>=2.30.0
|
29
|
-
Requires-Dist: google-cloud-storage>=2.18.0, <3.0.0
|
30
|
-
Requires-Dist: google-genai>=1.9.0
|
31
|
-
Requires-Dist: graphviz>=0.20.2
|
32
|
-
Requires-Dist: mcp>=1.5.0;python_version>='3.10'
|
33
|
-
Requires-Dist: opentelemetry-api>=1.31.0
|
34
|
-
Requires-Dist: opentelemetry-exporter-gcp-trace>=1.9.0
|
35
|
-
Requires-Dist: opentelemetry-sdk>=1.31.0
|
36
|
-
Requires-Dist: pydantic>=2.0, <3.0.0
|
37
|
-
Requires-Dist: python-dotenv>=1.0.0
|
38
|
-
Requires-Dist: PyYAML>=6.0.2
|
39
|
-
Requires-Dist: sqlalchemy>=2.0
|
40
|
-
Requires-Dist: tzlocal>=5.3
|
41
|
-
Requires-Dist: uvicorn>=0.34.0
|
42
|
-
Requires-Dist: flit>=3.10.0 ; extra == "dev"
|
43
|
-
Requires-Dist: isort>=6.0.0 ; extra == "dev"
|
44
|
-
Requires-Dist: pyink>=24.10.0 ; extra == "dev"
|
45
|
-
Requires-Dist: pylint>=2.6.0 ; extra == "dev"
|
46
|
-
Requires-Dist: autodoc_pydantic ; extra == "docs"
|
47
|
-
Requires-Dist: furo ; extra == "docs"
|
48
|
-
Requires-Dist: myst-parser ; extra == "docs"
|
49
|
-
Requires-Dist: sphinx ; extra == "docs"
|
50
|
-
Requires-Dist: sphinx-autodoc-typehints ; extra == "docs"
|
51
|
-
Requires-Dist: sphinx-rtd-theme ; extra == "docs"
|
52
|
-
Requires-Dist: google-cloud-aiplatform[evaluation]>=1.87.0 ; extra == "eval"
|
53
|
-
Requires-Dist: pandas>=2.2.3 ; extra == "eval"
|
54
|
-
Requires-Dist: tabulate>=0.9.0 ; extra == "eval"
|
55
|
-
Requires-Dist: anthropic>=0.43.0 ; extra == "extensions"
|
56
|
-
Requires-Dist: beautifulsoup4>=3.2.2 ; extra == "extensions"
|
57
|
-
Requires-Dist: crewai[tools] ; extra == "extensions" and (python_version>='3.10')
|
58
|
-
Requires-Dist: docker>=7.0.0 ; extra == "extensions"
|
59
|
-
Requires-Dist: langgraph>=0.2.60 ; extra == "extensions"
|
60
|
-
Requires-Dist: litellm>=1.63.11 ; extra == "extensions"
|
61
|
-
Requires-Dist: llama-index-readers-file>=0.4.0 ; extra == "extensions"
|
62
|
-
Requires-Dist: lxml>=5.3.0 ; extra == "extensions"
|
63
|
-
Requires-Dist: langchain-community>=0.3.17 ; extra == "test"
|
64
|
-
Requires-Dist: pytest-asyncio>=0.25.0 ; extra == "test"
|
65
|
-
Requires-Dist: pytest-mock>=3.14.0 ; extra == "test"
|
66
|
-
Requires-Dist: pytest-xdist>=3.6.1 ; extra == "test"
|
67
|
-
Requires-Dist: pytest>=8.3.4 ; extra == "test"
|
68
|
-
Project-URL: changelog, https://github.com/google/adk-python/blob/main/CHANGELOG.md
|
69
|
-
Project-URL: documentation, https://google.github.io/adk-docs/
|
70
|
-
Project-URL: homepage, https://google.github.io/adk-docs/
|
71
|
-
Project-URL: repository, https://github.com/google/adk-python
|
72
|
-
Provides-Extra: dev
|
73
|
-
Provides-Extra: docs
|
74
|
-
Provides-Extra: eval
|
75
|
-
Provides-Extra: extensions
|
76
|
-
Provides-Extra: test
|
77
|
-
|
78
|
-
# Agent Development Kit (ADK)
|
79
|
-
|
80
|
-
An open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.
|
81
|
-
|
82
|
-
The Agent Development Kit (ADK) is designed for developers seeking fine-grained control and flexibility when building advanced AI agents that are tightly integrated with services in Google Cloud. It allows you to define agent behavior, orchestration, and tool use directly in code, enabling robust debugging, versioning, and deployment anywhere – from your laptop to the cloud.
|
83
|
-
|
84
|
-
---
|
85
|
-
|
86
|
-
## ✨ Key Features
|
87
|
-
|
88
|
-
* **Code-First Development:** Define agents, tools, and orchestration logic for maximum control, testability, and versioning.
|
89
|
-
* **Multi-Agent Architecture:** Build modular and scalable applications by composing multiple specialized agents in flexible hierarchies.
|
90
|
-
* **Rich Tool Ecosystem:** Equip agents with diverse capabilities using pre-built tools, custom Python functions, API specifications, or integrating existing tools.
|
91
|
-
* **Flexible Orchestration:** Define workflows using built-in agents for predictable pipelines, or leverage LLM-driven dynamic routing for adaptive behavior.
|
92
|
-
* **Integrated Developer Experience:** Develop, test, and debug locally with a CLI and visual web UI.
|
93
|
-
* **Built-in Evaluation:** Measure agent performance by evaluating response quality and step-by-step execution trajectory.
|
94
|
-
* **Deployment Ready:** Containerize and deploy your agents anywhere – scale with Vertex AI Agent Engine, Cloud Run, or Docker.
|
95
|
-
* **Native Streaming Support:** Build real-time, interactive experiences with native support for bidirectional streaming (text and audio).
|
96
|
-
* **State, Memory & Artifacts:** Manage short-term conversational context, configure long-term memory, and handle file uploads/downloads.
|
97
|
-
* **Extensibility:** Customize agent behavior deeply with callbacks and easily integrate third-party tools and services.
|
98
|
-
|
99
|
-
## 🚀 Installation
|
100
|
-
|
101
|
-
You can install the ADK using `pip`:
|
102
|
-
|
103
|
-
```bash
|
104
|
-
pip install google-adk
|
105
|
-
```
|
106
|
-
|
107
|
-
## 🏁 Getting Started
|
108
|
-
|
109
|
-
Create your first agent (`my_agent/agent.py`):
|
110
|
-
|
111
|
-
```python
|
112
|
-
# my_agent/agent.py
|
113
|
-
from google.adk.agents import Agent
|
114
|
-
from google.adk.tools import google_search
|
115
|
-
|
116
|
-
root_agent = Agent(
|
117
|
-
name="search_assistant",
|
118
|
-
model="gemini-2.0-flash-exp", # Or your preferred Gemini model
|
119
|
-
instruction="You are a helpful assistant. Answer user questions using Google Search when needed.",
|
120
|
-
description="An assistant that can search the web.",
|
121
|
-
tools=[google_search]
|
122
|
-
)
|
123
|
-
```
|
124
|
-
|
125
|
-
Create `my_agent/__init__.py`:
|
126
|
-
|
127
|
-
```python
|
128
|
-
# my_agent/__init__.py
|
129
|
-
from . import agent
|
130
|
-
```
|
131
|
-
|
132
|
-
Run it via the CLI (from the directory *containing* `my_agent`):
|
133
|
-
|
134
|
-
```bash
|
135
|
-
adk run my_agent
|
136
|
-
```
|
137
|
-
|
138
|
-
Or launch the Web UI from the folder that contains `my_agent` folder:
|
139
|
-
|
140
|
-
```bash
|
141
|
-
adk web
|
142
|
-
```
|
143
|
-
|
144
|
-
For a full step-by-step guide, check out the [quickstart](https://google.github.io/adk-docs/get-started/quickstart/) or [sample agents](https://github.com/google/adk-samples).
|
145
|
-
|
146
|
-
## 📚 Resources
|
147
|
-
|
148
|
-
Explore the full documentation for detailed guides on building, evaluating, and deploying agents:
|
149
|
-
|
150
|
-
* **[Get Started](https://google.github.io/adk-docs/get-started/)**
|
151
|
-
* **[Browse Sample Agents](https://github.com/google/adk-samples)**
|
152
|
-
* **[Evaluate Agents](https://google.github.io/adk-docs/guides/evaluate-agents/)**
|
153
|
-
* **[Deploy Agents](https://google.github.io/adk-docs/deploy/)**
|
154
|
-
* **[API Reference](https://google.github.io/adk-docs/api-reference/)**
|
155
|
-
* **[Troubleshooting](https://google.github.io/adk-docs/guides/troubleshooting/)**
|
156
|
-
|
157
|
-
---
|
158
|
-
|
159
|
-
*Happy Agent Building!*
|
160
|
-
|
File without changes
|
File without changes
|
File without changes
|