google-adk 1.0.0__py3-none-any.whl → 1.1.1__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/callback_context.py +2 -1
- google/adk/agents/readonly_context.py +3 -1
- google/adk/auth/auth_credential.py +4 -1
- google/adk/cli/browser/index.html +4 -4
- google/adk/cli/browser/{main-QOEMUXM4.js → main-PKDNKWJE.js} +59 -59
- google/adk/cli/browser/polyfills-B6TNHZQ6.js +17 -0
- google/adk/cli/cli.py +3 -2
- google/adk/cli/cli_eval.py +6 -85
- google/adk/cli/cli_tools_click.py +39 -10
- google/adk/cli/fast_api.py +53 -184
- google/adk/cli/utils/agent_loader.py +137 -0
- google/adk/cli/utils/cleanup.py +40 -0
- google/adk/cli/utils/evals.py +2 -1
- google/adk/cli/utils/logs.py +2 -7
- google/adk/code_executors/code_execution_utils.py +2 -1
- google/adk/code_executors/container_code_executor.py +0 -1
- google/adk/code_executors/vertex_ai_code_executor.py +6 -8
- google/adk/evaluation/eval_case.py +3 -1
- google/adk/evaluation/eval_metrics.py +74 -0
- google/adk/evaluation/eval_result.py +86 -0
- google/adk/evaluation/eval_set.py +2 -0
- google/adk/evaluation/eval_set_results_manager.py +47 -0
- google/adk/evaluation/eval_sets_manager.py +2 -1
- google/adk/evaluation/evaluator.py +2 -0
- google/adk/evaluation/local_eval_set_results_manager.py +113 -0
- google/adk/evaluation/local_eval_sets_manager.py +4 -4
- google/adk/evaluation/response_evaluator.py +2 -1
- google/adk/evaluation/trajectory_evaluator.py +3 -2
- google/adk/examples/base_example_provider.py +1 -0
- google/adk/flows/llm_flows/base_llm_flow.py +4 -6
- google/adk/flows/llm_flows/contents.py +3 -1
- google/adk/flows/llm_flows/instructions.py +7 -77
- google/adk/flows/llm_flows/single_flow.py +1 -1
- google/adk/models/base_llm.py +2 -1
- google/adk/models/base_llm_connection.py +2 -0
- google/adk/models/google_llm.py +4 -1
- google/adk/models/lite_llm.py +3 -2
- google/adk/models/llm_response.py +2 -1
- google/adk/runners.py +36 -4
- google/adk/sessions/_session_util.py +2 -1
- google/adk/sessions/database_session_service.py +5 -8
- google/adk/sessions/vertex_ai_session_service.py +28 -13
- google/adk/telemetry.py +4 -2
- google/adk/tools/agent_tool.py +1 -1
- google/adk/tools/apihub_tool/apihub_toolset.py +1 -1
- google/adk/tools/apihub_tool/clients/apihub_client.py +10 -3
- google/adk/tools/apihub_tool/clients/secret_client.py +1 -0
- google/adk/tools/application_integration_tool/application_integration_toolset.py +6 -2
- google/adk/tools/application_integration_tool/clients/connections_client.py +8 -1
- google/adk/tools/application_integration_tool/clients/integration_client.py +3 -1
- google/adk/tools/application_integration_tool/integration_connector_tool.py +1 -1
- google/adk/tools/base_toolset.py +40 -2
- google/adk/tools/bigquery/__init__.py +38 -0
- google/adk/tools/bigquery/bigquery_credentials.py +217 -0
- google/adk/tools/bigquery/bigquery_tool.py +116 -0
- google/adk/tools/bigquery/bigquery_toolset.py +86 -0
- google/adk/tools/bigquery/client.py +33 -0
- google/adk/tools/bigquery/metadata_tool.py +249 -0
- google/adk/tools/bigquery/query_tool.py +76 -0
- google/adk/tools/function_parameter_parse_util.py +7 -0
- google/adk/tools/function_tool.py +33 -3
- google/adk/tools/get_user_choice_tool.py +1 -0
- google/adk/tools/google_api_tool/__init__.py +17 -11
- google/adk/tools/google_api_tool/google_api_tool.py +1 -1
- google/adk/tools/google_api_tool/google_api_toolset.py +0 -14
- google/adk/tools/google_api_tool/google_api_toolsets.py +8 -2
- google/adk/tools/google_search_tool.py +2 -2
- google/adk/tools/mcp_tool/conversion_utils.py +6 -2
- google/adk/tools/mcp_tool/mcp_session_manager.py +62 -188
- google/adk/tools/mcp_tool/mcp_tool.py +27 -24
- google/adk/tools/mcp_tool/mcp_toolset.py +76 -131
- google/adk/tools/openapi_tool/auth/credential_exchangers/base_credential_exchanger.py +1 -3
- google/adk/tools/openapi_tool/auth/credential_exchangers/service_account_exchanger.py +6 -7
- google/adk/tools/openapi_tool/common/common.py +5 -1
- google/adk/tools/openapi_tool/openapi_spec_parser/__init__.py +7 -2
- google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py +2 -7
- google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py +5 -1
- google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py +11 -1
- google/adk/tools/toolbox_toolset.py +31 -3
- google/adk/utils/__init__.py +13 -0
- google/adk/utils/instructions_utils.py +131 -0
- google/adk/version.py +1 -1
- {google_adk-1.0.0.dist-info → google_adk-1.1.1.dist-info}/METADATA +12 -15
- {google_adk-1.0.0.dist-info → google_adk-1.1.1.dist-info}/RECORD +87 -78
- google/adk/agents/base_agent.py.orig +0 -330
- google/adk/cli/browser/polyfills-FFHMD2TL.js +0 -18
- google/adk/cli/fast_api.py.orig +0 -822
- google/adk/memory/base_memory_service.py.orig +0 -76
- google/adk/models/google_llm.py.orig +0 -305
- google/adk/tools/_built_in_code_execution_tool.py +0 -70
- google/adk/tools/mcp_tool/mcp_session_manager.py.orig +0 -322
- {google_adk-1.0.0.dist-info → google_adk-1.1.1.dist-info}/WHEEL +0 -0
- {google_adk-1.0.0.dist-info → google_adk-1.1.1.dist-info}/entry_points.txt +0 -0
- {google_adk-1.0.0.dist-info → google_adk-1.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,131 @@
|
|
1
|
+
# Copyright 2025 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
import re
|
16
|
+
|
17
|
+
from ..agents.readonly_context import ReadonlyContext
|
18
|
+
from ..sessions.state import State
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
'inject_session_state',
|
22
|
+
]
|
23
|
+
|
24
|
+
|
25
|
+
async def inject_session_state(
|
26
|
+
template: str,
|
27
|
+
readonly_context: ReadonlyContext,
|
28
|
+
) -> str:
|
29
|
+
"""Populates values in the instruction template, e.g. state, artifact, etc.
|
30
|
+
|
31
|
+
This method is intended to be used in InstructionProvider based instruction
|
32
|
+
and global_instruction which are called with readonly_context.
|
33
|
+
|
34
|
+
e.g.
|
35
|
+
```
|
36
|
+
...
|
37
|
+
from google.adk.utils import instructions_utils
|
38
|
+
|
39
|
+
async def build_instruction(
|
40
|
+
readonly_context: ReadonlyContext,
|
41
|
+
) -> str:
|
42
|
+
return await instructions_utils.inject_session_state(
|
43
|
+
'You can inject a state variable like {var_name} or an artifact '
|
44
|
+
'{artifact.file_name} into the instruction template.',
|
45
|
+
readonly_context,
|
46
|
+
)
|
47
|
+
|
48
|
+
agent = Agent(
|
49
|
+
model="gemini-2.0-flash",
|
50
|
+
name="agent",
|
51
|
+
instruction=build_instruction,
|
52
|
+
)
|
53
|
+
```
|
54
|
+
|
55
|
+
Args:
|
56
|
+
template: The instruction template.
|
57
|
+
readonly_context: The read-only context
|
58
|
+
|
59
|
+
Returns:
|
60
|
+
The instruction template with values populated.
|
61
|
+
"""
|
62
|
+
|
63
|
+
invocation_context = readonly_context._invocation_context
|
64
|
+
|
65
|
+
async def _async_sub(pattern, repl_async_fn, string) -> str:
|
66
|
+
result = []
|
67
|
+
last_end = 0
|
68
|
+
for match in re.finditer(pattern, string):
|
69
|
+
result.append(string[last_end : match.start()])
|
70
|
+
replacement = await repl_async_fn(match)
|
71
|
+
result.append(replacement)
|
72
|
+
last_end = match.end()
|
73
|
+
result.append(string[last_end:])
|
74
|
+
return ''.join(result)
|
75
|
+
|
76
|
+
async def _replace_match(match) -> str:
|
77
|
+
var_name = match.group().lstrip('{').rstrip('}').strip()
|
78
|
+
optional = False
|
79
|
+
if var_name.endswith('?'):
|
80
|
+
optional = True
|
81
|
+
var_name = var_name.removesuffix('?')
|
82
|
+
if var_name.startswith('artifact.'):
|
83
|
+
var_name = var_name.removeprefix('artifact.')
|
84
|
+
if invocation_context.artifact_service is None:
|
85
|
+
raise ValueError('Artifact service is not initialized.')
|
86
|
+
artifact = await invocation_context.artifact_service.load_artifact(
|
87
|
+
app_name=invocation_context.session.app_name,
|
88
|
+
user_id=invocation_context.session.user_id,
|
89
|
+
session_id=invocation_context.session.id,
|
90
|
+
filename=var_name,
|
91
|
+
)
|
92
|
+
if not var_name:
|
93
|
+
raise KeyError(f'Artifact {var_name} not found.')
|
94
|
+
return str(artifact)
|
95
|
+
else:
|
96
|
+
if not _is_valid_state_name(var_name):
|
97
|
+
return match.group()
|
98
|
+
if var_name in invocation_context.session.state:
|
99
|
+
return str(invocation_context.session.state[var_name])
|
100
|
+
else:
|
101
|
+
if optional:
|
102
|
+
return ''
|
103
|
+
else:
|
104
|
+
raise KeyError(f'Context variable not found: `{var_name}`.')
|
105
|
+
|
106
|
+
return await _async_sub(r'{+[^{}]*}+', _replace_match, template)
|
107
|
+
|
108
|
+
|
109
|
+
def _is_valid_state_name(var_name):
|
110
|
+
"""Checks if the variable name is a valid state name.
|
111
|
+
|
112
|
+
Valid state is either:
|
113
|
+
- Valid identifier
|
114
|
+
- <Valid prefix>:<Valid identifier>
|
115
|
+
All the others will just return as it is.
|
116
|
+
|
117
|
+
Args:
|
118
|
+
var_name: The variable name to check.
|
119
|
+
|
120
|
+
Returns:
|
121
|
+
True if the variable name is a valid state name, False otherwise.
|
122
|
+
"""
|
123
|
+
parts = var_name.split(':')
|
124
|
+
if len(parts) == 1:
|
125
|
+
return var_name.isidentifier()
|
126
|
+
|
127
|
+
if len(parts) == 2:
|
128
|
+
prefixes = [State.APP_PREFIX, State.USER_PREFIX, State.TEMP_PREFIX]
|
129
|
+
if (parts[0] + ':') in prefixes:
|
130
|
+
return parts[1].isidentifier()
|
131
|
+
return False
|
google/adk/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: google-adk
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.1.1
|
4
4
|
Summary: Agent Development Kit
|
5
5
|
Author-email: Google LLC <googleapis-packages@google.com>
|
6
6
|
Requires-Python: >=3.9
|
@@ -96,8 +96,10 @@ Provides-Extra: test
|
|
96
96
|
</h3>
|
97
97
|
<h3 align="center">
|
98
98
|
Important Links:
|
99
|
-
<a href="https://google.github.io/adk-docs/">Docs</a
|
100
|
-
<a href="https://github.com/google/adk-samples">Samples</a
|
99
|
+
<a href="https://google.github.io/adk-docs/">Docs</a>,
|
100
|
+
<a href="https://github.com/google/adk-samples">Samples</a>,
|
101
|
+
<a href="https://github.com/google/adk-java">Java ADK</a> &
|
102
|
+
<a href="https://github.com/google/adk-web">ADK Web</a>.
|
101
103
|
</h3>
|
102
104
|
</html>
|
103
105
|
|
@@ -121,6 +123,12 @@ Agent Development Kit (ADK) is a flexible and modular framework for developing a
|
|
121
123
|
- **Deploy Anywhere**: Easily containerize and deploy agents on Cloud Run or
|
122
124
|
scale seamlessly with Vertex AI Agent Engine.
|
123
125
|
|
126
|
+
## 🤖 Agent2Agent (A2A) Protocol and ADK Integration
|
127
|
+
|
128
|
+
For remote agent-to-agent communication, ADK integrates with the
|
129
|
+
[A2A protocol](https://github.com/google/A2A/).
|
130
|
+
See this [example](https://github.com/google/A2A/tree/main/samples/python/agents/google_adk)
|
131
|
+
for how they can work together.
|
124
132
|
|
125
133
|
## 🚀 Installation
|
126
134
|
|
@@ -206,16 +214,9 @@ adk eval \
|
|
206
214
|
samples_for_testing/hello_world/hello_world_eval_set_001.evalset.json
|
207
215
|
```
|
208
216
|
|
209
|
-
## 🤖 A2A and ADK integration
|
210
|
-
|
211
|
-
For remote agent-to-agent communication, ADK integrates with the
|
212
|
-
[A2A protocol](https://github.com/google/A2A/).
|
213
|
-
See this [example](https://github.com/google/A2A/tree/main/samples/python/agents/google_adk)
|
214
|
-
for how they can work together.
|
215
|
-
|
216
217
|
## 🤝 Contributing
|
217
218
|
|
218
|
-
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, please see our
|
219
|
+
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, please see our
|
219
220
|
- [General contribution guideline and flow](https://google.github.io/adk-docs/contributing-guide/#questions).
|
220
221
|
- Then if you want to contribute code, please read [Code Contributing Guidelines](./CONTRIBUTING.md) to get started.
|
221
222
|
|
@@ -223,10 +224,6 @@ We welcome contributions from the community! Whether it's bug reports, feature r
|
|
223
224
|
|
224
225
|
This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.
|
225
226
|
|
226
|
-
## Preview
|
227
|
-
|
228
|
-
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).
|
229
|
-
|
230
227
|
---
|
231
228
|
|
232
229
|
*Happy Agent Building!*
|
@@ -1,19 +1,18 @@
|
|
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=GXlJjARTSZgYsu6W5MhrZgMZZqit-elqK5qdpLs8rU0,18177
|
3
|
+
google/adk/telemetry.py,sha256=vR3mXZd3E4k-QpHcRnQ92ng0nDOr1sVEF_Fe6f33E0w,6446
|
4
|
+
google/adk/version.py,sha256=-t-FxnOMrGz1DfJCH0__Oi1hRHmkdgR1V28ZJjCYjfA,621
|
5
5
|
google/adk/agents/__init__.py,sha256=WsCiBlvI-ISWrcntboo_sULvVJNwLNxXCe42UGPLKdY,1041
|
6
6
|
google/adk/agents/active_streaming_tool.py,sha256=vFuh_PkdF5EyyneBBJ7Al8ojeTIR3OtsxLjckr9DbXE,1194
|
7
7
|
google/adk/agents/base_agent.py,sha256=3OBJWLnRsnWuBPA2zLYo-6Yhs1bFDJGKHoa8_RPgndg,12271
|
8
|
-
google/adk/agents/
|
9
|
-
google/adk/agents/callback_context.py,sha256=ENK7Z27KD-orAr3kaa0n4NCtstZyUx1OrquhEnIN0Z4,3410
|
8
|
+
google/adk/agents/callback_context.py,sha256=BVDcgrJEWEPEf9ZzWFyhUFcZJ2ECm8XFStgQ6Xa4whs,3428
|
10
9
|
google/adk/agents/invocation_context.py,sha256=hN3T06F7T4-IpI2CGcmBqrzH4yo9fpW1O79iZwajQB4,6208
|
11
10
|
google/adk/agents/langgraph_agent.py,sha256=1MI-jsLRncMy4mpjSsGU5FL6zbK-k4FxiupnujgYVNE,4287
|
12
11
|
google/adk/agents/live_request_queue.py,sha256=AudgMP6VfGjNgH7VeQamKJ6Yo2n5eIlikcscoOqprNU,2109
|
13
12
|
google/adk/agents/llm_agent.py,sha256=DsM7np-ASB8YE-cUnReif488vnT00Oy_4ry8EYtiASU,16858
|
14
13
|
google/adk/agents/loop_agent.py,sha256=BRGCwSopdOX_x7oUTnUe7udS9GpV0zOn5vXf1USsCf0,1935
|
15
14
|
google/adk/agents/parallel_agent.py,sha256=-KnMjMRdl4y9j2MrlzREIE4LPedjesH_EqzsujYMCtc,3244
|
16
|
-
google/adk/agents/readonly_context.py,sha256=
|
15
|
+
google/adk/agents/readonly_context.py,sha256=MyRXiSTT8kFheq7VYQjXow6mwYpdZim4PgI2iKT-XIo,1659
|
17
16
|
google/adk/agents/run_config.py,sha256=6IorXL0OsgnWbsMRzVRQ6NJ2vz4zE_GT0S5em95fzwk,3116
|
18
17
|
google/adk/agents/sequential_agent.py,sha256=LFNVRbSNp1-gQtEpNpzChAIqKb7sbCojiMQRqxQbigk,2714
|
19
18
|
google/adk/agents/transcription_entry.py,sha256=HL8j2xvtdrcP4_uxy55ASCmLFrc8KchvV2eoGnwZnqc,1178
|
@@ -22,7 +21,7 @@ google/adk/artifacts/base_artifact_service.py,sha256=H-t5nckLTfr330utj8vxjH45z81
|
|
22
21
|
google/adk/artifacts/gcs_artifact_service.py,sha256=-YU4NhZiGMnHHCg00aJWgKq4JWkQLh7EH5OuGusM5bE,5608
|
23
22
|
google/adk/artifacts/in_memory_artifact_service.py,sha256=Iw34Ja89JwGgd3sulbxxk5pVMqzEZJCt4F2m15MC37U,4059
|
24
23
|
google/adk/auth/__init__.py,sha256=GoFe0aZGdp0ExNE4rXNn1RuXLaB64j7Z-2C5e2Hsh8c,908
|
25
|
-
google/adk/auth/auth_credential.py,sha256=
|
24
|
+
google/adk/auth/auth_credential.py,sha256=E3XdwhPeDTIw8lX43tnhsiVdwudfDI7LghpV1EHNg-M,6906
|
26
25
|
google/adk/auth/auth_handler.py,sha256=ViqVsH5pzO8Pzq6HwlI4b1Y98NZO822TYRPnYAzIbNc,9478
|
27
26
|
google/adk/auth/auth_preprocessor.py,sha256=RQLkCajcyWDwRL-griI2r2KpkRGARoC228WKcDQ_RtI,4372
|
28
27
|
google/adk/auth/auth_schemes.py,sha256=dxx9bxjOWoae1fSVxbpaVTwa0I4v76_QJJFEX--1ueA,2260
|
@@ -30,49 +29,54 @@ google/adk/auth/auth_tool.py,sha256=b6VG3yuHNqk3HTCh9AheYz1T664M8SI4MzT5mfCyleo,
|
|
30
29
|
google/adk/cli/__init__.py,sha256=ouPYnIY02VmGNfpA6IT8oSQdfeZd1LHVoDSt_x8zQPU,609
|
31
30
|
google/adk/cli/__main__.py,sha256=gN8rRWlkh_3gLI-oYByxrKpCW9BIfDwrr0YuyisxmHo,646
|
32
31
|
google/adk/cli/agent_graph.py,sha256=0jCqJYwuCHYH7UM2Qj0YGCBL3wcRsYfctiD59DDC0Dg,4796
|
33
|
-
google/adk/cli/cli.py,sha256=
|
32
|
+
google/adk/cli/cli.py,sha256=Zu0ZVsR3CceV6cKvg9RQFP9Vf8V54k5Q9OxlOEl6gf8,6290
|
34
33
|
google/adk/cli/cli_create.py,sha256=S5sAKIzTjaf3bWoh6nUCSxm9koxdkN0SkTnOtsl0Oqs,8010
|
35
34
|
google/adk/cli/cli_deploy.py,sha256=JijllmdqkOj0PgKZZk6TPRsf4dxjFUZ1_7R1gL-HzVY,5579
|
36
|
-
google/adk/cli/cli_eval.py,sha256=
|
37
|
-
google/adk/cli/cli_tools_click.py,sha256=
|
38
|
-
google/adk/cli/fast_api.py,sha256=
|
39
|
-
google/adk/cli/fast_api.py.orig,sha256=WHO8EDtsp2si_ohde12R08cWbr79tyh4fzz5jFhIvGE,26936
|
35
|
+
google/adk/cli/cli_eval.py,sha256=iCSzi1f1ik1rytCeu0GvQqkVnIBekpfx97utHpSXUMI,10208
|
36
|
+
google/adk/cli/cli_tools_click.py,sha256=CularQQStNSH3OpoeSwdybF8INT7suPPs_05fcm0Evk,21702
|
37
|
+
google/adk/cli/fast_api.py,sha256=QlI6QAMiyClfNnjUhPIiWgm15RPg0Ps81BvCvtG0dOE,29258
|
40
38
|
google/adk/cli/browser/adk_favicon.svg,sha256=giyzTZ5Xe6HFU63NgTIZDm35L-RmID-odVFOZ4vMo1M,3132
|
41
|
-
google/adk/cli/browser/index.html,sha256=
|
42
|
-
google/adk/cli/browser/main-
|
43
|
-
google/adk/cli/browser/polyfills-
|
39
|
+
google/adk/cli/browser/index.html,sha256=TMy4LmFCkABlfJIzgyR2NNRQTeDYZY1zcRp5GuYIbHw,18492
|
40
|
+
google/adk/cli/browser/main-PKDNKWJE.js,sha256=ZFI1OvDkpASDn-OaBi5y7mn4hbNKsidWypBUgXsfKW8,2513096
|
41
|
+
google/adk/cli/browser/polyfills-B6TNHZQ6.js,sha256=OZqRhQr8Rry7NUXeV4HSUfYYw8SzT-EdeYhQiper93Y,35174
|
44
42
|
google/adk/cli/browser/styles-4VDSPQ37.css,sha256=QF3xmtXMt44nFiCh0aKnvQwQiZptr3sW1u9bzltukAI,5522
|
45
43
|
google/adk/cli/browser/assets/audio-processor.js,sha256=BTYefpDeOz7VQveAoC_WFleLY9JkJs_FuGS0oQiadIA,1769
|
46
44
|
google/adk/cli/browser/assets/config/runtime-config.json,sha256=obOpZdzA-utX_wG6I687-5W7i1f8W9ixXOb7ky7rdvU,22
|
47
45
|
google/adk/cli/utils/__init__.py,sha256=2PrkBZeLjc3mXZMDJkev3IKgd07d4CheASgTB3tqz8Y,1528
|
46
|
+
google/adk/cli/utils/agent_loader.py,sha256=Dvjpfl_9Umpsok4_AHPyhsrQ9ColeN-HeWZnIZzse_A,5631
|
47
|
+
google/adk/cli/utils/cleanup.py,sha256=c8kMxpDoNsr49C0O68pptpmy8oce1PjaLtvUy200pWw,1296
|
48
48
|
google/adk/cli/utils/common.py,sha256=brmJF3t-h_HCCS9FQtgqY0Ozk1meeM6a1omwcmsbDBQ,788
|
49
49
|
google/adk/cli/utils/envs.py,sha256=S8_aqTZL8bQ4-FDYpgmNzPBTrz2UlMbV0Dg5sx-9p_0,1683
|
50
|
-
google/adk/cli/utils/evals.py,sha256
|
51
|
-
google/adk/cli/utils/logs.py,sha256=
|
50
|
+
google/adk/cli/utils/evals.py,sha256=OB_c0Z_GelnyddzdNb2sqkPsDYdjngPEAa74Laxwryo,6564
|
51
|
+
google/adk/cli/utils/logs.py,sha256=ARcKVGDi8vHReg1DO7ZGbUBk0RejRMzKf2xHvIWn2xA,2296
|
52
52
|
google/adk/code_executors/__init__.py,sha256=dJ8qAZyj3jm8fNnzQWoWpI7xSVUGhU5qIxbEDpouizc,1641
|
53
53
|
google/adk/code_executors/base_code_executor.py,sha256=QLpgVcFNI5V21U-kVleze24ADeuDKgE3wI7Uui6vUeo,3030
|
54
54
|
google/adk/code_executors/built_in_code_executor.py,sha256=nAAB8lMrbVdMlAa3dYMrXJO5CndjGT4BJo27-7VUVwQ,1895
|
55
|
-
google/adk/code_executors/code_execution_utils.py,sha256=
|
55
|
+
google/adk/code_executors/code_execution_utils.py,sha256=kPK4q7lmh4SQ46X5t5gnhlaEKX0PPEvjMzeFgTWGC0w,7372
|
56
56
|
google/adk/code_executors/code_executor_context.py,sha256=W8kLnyDLq0Ci_8dDHXv9CmkQITmNKhGc8f82gC7v5ik,6732
|
57
|
-
google/adk/code_executors/container_code_executor.py,sha256=
|
57
|
+
google/adk/code_executors/container_code_executor.py,sha256=oISE39f0OZ2HJfLEdUZYZEIBj-yagFX_OldQBHzzsCY,6417
|
58
58
|
google/adk/code_executors/unsafe_local_code_executor.py,sha256=0UHcjaFF5V8swin3WLs6UjAaW7P_tPmSyaaPOOiDPys,2387
|
59
|
-
google/adk/code_executors/vertex_ai_code_executor.py,sha256=
|
59
|
+
google/adk/code_executors/vertex_ai_code_executor.py,sha256=zHDWe1NyPOkOxD6jl9tcK3emP0MgpJjxfVAc_zS2JkU,7093
|
60
60
|
google/adk/evaluation/__init__.py,sha256=MjSF-43UTBEp_4RKf7VK7RpFbt-9SKYYfiOgSwvco8c,1020
|
61
61
|
google/adk/evaluation/agent_evaluator.py,sha256=zsUIiXNuilFEnlhdIu2hYpzwbR9AIx1Ku-wg8iHRnN8,12997
|
62
|
-
google/adk/evaluation/eval_case.py,sha256=
|
63
|
-
google/adk/evaluation/
|
64
|
-
google/adk/evaluation/
|
62
|
+
google/adk/evaluation/eval_case.py,sha256=R3JSfERdXl2aL-knx8UVeKk1E1kUU2ijgFlsmJGZ_MA,3201
|
63
|
+
google/adk/evaluation/eval_metrics.py,sha256=ej1bDwzEu0yyB_wX1w0iP13xoz-aoBfj-YVJUwQddrA,2087
|
64
|
+
google/adk/evaluation/eval_result.py,sha256=6SAV83Qz8pevKXUPS52reqKWgX6LKV6Xhd5-NlJK_Ak,2636
|
65
|
+
google/adk/evaluation/eval_set.py,sha256=QQjwXcb2qp1FRchu7xt5L9_DT7D1fKxSFQ9QkyB67-s,1143
|
66
|
+
google/adk/evaluation/eval_set_results_manager.py,sha256=2c6FBPV-O2Rhx_aOUBKDgUxtiIoRdoooJWLRcHWgfDw,1516
|
67
|
+
google/adk/evaluation/eval_sets_manager.py,sha256=wTWmMpOMYlLoyl-BnO4Pe895h3Ni1KKyRsPVJWx6Cy8,1549
|
65
68
|
google/adk/evaluation/evaluation_constants.py,sha256=q3FpEx1PDoj0VjVwHDZ6U-LNZ1_uApM03d2vOevvHA4,857
|
66
69
|
google/adk/evaluation/evaluation_generator.py,sha256=4qKyeWK8PCABEuQe-jSgFFXCAHRtNZ5Z3Xh5MWbstYk,8191
|
67
|
-
google/adk/evaluation/evaluator.py,sha256=
|
68
|
-
google/adk/evaluation/
|
69
|
-
google/adk/evaluation/
|
70
|
-
google/adk/evaluation/
|
70
|
+
google/adk/evaluation/evaluator.py,sha256=ACERS1jNCcqPPoI84qt68-B_aAr8o729cd2Qmb-FrXE,1673
|
71
|
+
google/adk/evaluation/local_eval_set_results_manager.py,sha256=rwAk2sHTEsnB7Eg8J5I_2UpQv2HZOMQe7u32kPqkS3w,4059
|
72
|
+
google/adk/evaluation/local_eval_sets_manager.py,sha256=srqnsp_rPCLakzRVv-iSxmznojE9BAhQiPcsnrYrOW0,8620
|
73
|
+
google/adk/evaluation/response_evaluator.py,sha256=mgRXAs9qFDN5C5hx39MSzeO7SZybYdwWYHR_y1MDvJQ,8386
|
74
|
+
google/adk/evaluation/trajectory_evaluator.py,sha256=tNye1IZUqjYo-3Mi-R8RIpflcX7jawPqvGLU5aRtBHI,8085
|
71
75
|
google/adk/events/__init__.py,sha256=Lh0rh6RAt5DIxbwBUajjGMbB6bZW5K4Qli6PD_Jv74Q,688
|
72
76
|
google/adk/events/event.py,sha256=LZal8tipy5mCln4WLYatFQ3yWRL5QDB30oBK0z7aczM,4719
|
73
77
|
google/adk/events/event_actions.py,sha256=-f_WTN8eQdhAj2celU5AoynGlBfplj3nia9C7OrT534,2275
|
74
78
|
google/adk/examples/__init__.py,sha256=LCuLG_SOF9OAV3vc1tHAaBAOeQEZl0MFHC2LGmZ6e-A,851
|
75
|
-
google/adk/examples/base_example_provider.py,sha256=
|
79
|
+
google/adk/examples/base_example_provider.py,sha256=tood7EnGil4pM3GPRTsSUby2TiAfstBv0x1v8djpgwQ,1074
|
76
80
|
google/adk/examples/example.py,sha256=HVnntZLa-HLSwEzALydRUw6DuxQpoBYUnSQyYOsSuSE,868
|
77
81
|
google/adk/examples/example_util.py,sha256=S_DaDUnMe1VM0esRr0VoSBBYCYBuvz6_xV2e7X5PcHM,4271
|
78
82
|
google/adk/examples/vertex_ai_example_store.py,sha256=0w2N8oB0QTLjbM2gRRUMGY3D9zt8kQDlW4Y6p2jAcJQ,3632
|
@@ -84,58 +88,55 @@ google/adk/flows/llm_flows/_nl_planning.py,sha256=sGKa-wkVuDqlb6e9OadKAYhIAM2xD0
|
|
84
88
|
google/adk/flows/llm_flows/agent_transfer.py,sha256=zjRjEYTQB2R5CX0UwOoq8nXHioiQYop7sZhh8LeVkC0,3902
|
85
89
|
google/adk/flows/llm_flows/audio_transcriber.py,sha256=x0LeOZLDPVPzPCYNYA3JyAEAjCLMzmXCwhq12R67kDc,3541
|
86
90
|
google/adk/flows/llm_flows/auto_flow.py,sha256=CnuFelyZhB_ns4U_5_dW0x_KQlzu02My7qWcB4XBCYY,1714
|
87
|
-
google/adk/flows/llm_flows/base_llm_flow.py,sha256=
|
91
|
+
google/adk/flows/llm_flows/base_llm_flow.py,sha256=Coo5i7oVYnae7VhppaijiZfjF3ZqTYDME4jQRuI5JcI,21922
|
88
92
|
google/adk/flows/llm_flows/basic.py,sha256=LmSMiElRTEA9dCOOvPlGxyYrmqPsqRvQ2xizBVl27eE,2480
|
89
|
-
google/adk/flows/llm_flows/contents.py,sha256=
|
93
|
+
google/adk/flows/llm_flows/contents.py,sha256=G5Rnu880JAAtfKpMsEv78VgDAUPu4tmZjEum1QH_L5I,13010
|
90
94
|
google/adk/flows/llm_flows/functions.py,sha256=s_0HOVKyPU4SKB8Ec_ezVilBx4hJ_KKDgAmjDyZFP9c,16998
|
91
95
|
google/adk/flows/llm_flows/identity.py,sha256=X4CRg12NvnopmydU9gbFJI4lW1_otN-w_GOAuPvKrXo,1651
|
92
|
-
google/adk/flows/llm_flows/instructions.py,sha256=
|
93
|
-
google/adk/flows/llm_flows/single_flow.py,sha256=
|
96
|
+
google/adk/flows/llm_flows/instructions.py,sha256=sO2dQ5hn6ybjXs2fWYWvEFVtACdpiiP0yKf9eNVjhhM,2879
|
97
|
+
google/adk/flows/llm_flows/single_flow.py,sha256=gC677SxxammKx1XkZBzUdgBjDzeymKRcRQQxFGIur8Y,1904
|
94
98
|
google/adk/memory/__init__.py,sha256=8LHs0wpz5bVi0kChzERh9oMCjKh4e6Nmfe_821wF7QQ,1148
|
95
99
|
google/adk/memory/_utils.py,sha256=6hba7T4ZJ00K3tX1kLuiuiN02E844XtfR1lFEGa-AaM,797
|
96
100
|
google/adk/memory/base_memory_service.py,sha256=KlpjlgZopqKM19QP9X0eKLBSVG10hHjD4qgEEfwdb9k,1987
|
97
|
-
google/adk/memory/base_memory_service.py.orig,sha256=o2m-nUPMs2nt3AkZFyQxQ-f8-azz2Eq0f1DJ4gO7BGg,2069
|
98
101
|
google/adk/memory/in_memory_memory_service.py,sha256=S8mxOuosgzAFyl7ZoSjIo-vWY_3mhRMf2a13YO8MObo,3024
|
99
102
|
google/adk/memory/memory_entry.py,sha256=NSISrQHX6sww0J7wXP-eqxkGAkF2irqCU_UH-ziWACc,1092
|
100
103
|
google/adk/memory/vertex_ai_rag_memory_service.py,sha256=NyZts8asn7wOScGol-qeS5GlYfboyHc0GWZmnUzKnW4,6821
|
101
104
|
google/adk/models/__init__.py,sha256=jnI2M8tz4IN_WOUma4PIEdGOBDIotXcQpseH6P1VgZU,929
|
102
105
|
google/adk/models/anthropic_llm.py,sha256=i4N1lj4_4etiaiUH3VKUyfNCHuIi7uUYgsSzjvByS4U,8175
|
103
|
-
google/adk/models/base_llm.py,sha256=
|
104
|
-
google/adk/models/base_llm_connection.py,sha256=
|
106
|
+
google/adk/models/base_llm.py,sha256=85Oo0U0zyZK3iJZz9XVovnCvXNgVQ9Dvcf80VecWTNo,4017
|
107
|
+
google/adk/models/base_llm_connection.py,sha256=y_pNFA2xlwnsP6dt7BfoezfzoZ5gSZJnTogd7o7DodI,2254
|
105
108
|
google/adk/models/gemini_llm_connection.py,sha256=rWMOOSFRsbxkkz0fBxbVVkYFHaRdZYJCqoeyMXqgFDM,7313
|
106
|
-
google/adk/models/google_llm.py,sha256=
|
107
|
-
google/adk/models/
|
108
|
-
google/adk/models/lite_llm.py,sha256=uVzs_qcCIcA3hL83t_6hCobKMzQpg38oVWPuj4G0lEg,21618
|
109
|
+
google/adk/models/google_llm.py,sha256=6EVYJAk6EF4gwsCiMmpDooyeJHx2qc-SYusP6WMF2QQ,9137
|
110
|
+
google/adk/models/lite_llm.py,sha256=gc1Cq4ORaPznt2wJlQ5GzyCv7-u-bioFE-3rQUZ3GgY,21684
|
109
111
|
google/adk/models/llm_request.py,sha256=nJdE_mkAwa_QNkl7FJdw5Ys748vM5RqaRYiZtke-mDA,3008
|
110
|
-
google/adk/models/llm_response.py,sha256=
|
112
|
+
google/adk/models/llm_response.py,sha256=tQOfXCnJoiGp-Oxp1_lAKokx0klAzbwKklngKg4ExgQ,4563
|
111
113
|
google/adk/models/registry.py,sha256=5VQyHMEaMbVp9TdscTqDAOo9uXB85zjrbMrT3zQElLE,2542
|
112
114
|
google/adk/planners/__init__.py,sha256=6G_uYtLawi99HcgGGCOxcNleNezD2IaYLKz0P8nFkPQ,788
|
113
115
|
google/adk/planners/base_planner.py,sha256=cGlgxgxb_EAI8gkgiCpnLaf_rLs0U64yg94X32kGY2I,1961
|
114
116
|
google/adk/planners/built_in_planner.py,sha256=opeMOK6RZ1lQq0SLATyue1zM-UqFS29emtR1U2feO50,2450
|
115
117
|
google/adk/planners/plan_re_act_planner.py,sha256=i2DtzdyqNQsl1nV12Ty1ayEvjDMNFfnb8H2-PP9aNXQ,8478
|
116
118
|
google/adk/sessions/__init__.py,sha256=-gxRG5EY2NIlfEGHPu_6LQw8e5PfyCRAAjMuWCGbU3w,1264
|
117
|
-
google/adk/sessions/_session_util.py,sha256=
|
119
|
+
google/adk/sessions/_session_util.py,sha256=wHB1sGHsUn7e9s_bs0EXKfksy_Vopl6FU5gyhp7c5K8,1437
|
118
120
|
google/adk/sessions/base_session_service.py,sha256=xLccWQqcrqWEj8Q43aqfoyey1Zmz2x-Oz6CHqIOxU5w,3045
|
119
|
-
google/adk/sessions/database_session_service.py,sha256=
|
121
|
+
google/adk/sessions/database_session_service.py,sha256=T36qvl9avIHhkD6Iy2qb0pmwMhwoQkVMXRVWVIaNC0E,19551
|
120
122
|
google/adk/sessions/in_memory_session_service.py,sha256=1CCoDl_pN7kLySlyZw7zJstD9o3jVF_QPtGgs_No47c,8699
|
121
123
|
google/adk/sessions/session.py,sha256=fwJ3D4rUQ1N5cLMpFrE_BstEz6Ct637FlF52MfkxZCk,1861
|
122
124
|
google/adk/sessions/state.py,sha256=con9G5nfJpa95J5LKTAnZ3KMPkXdaTbrdwRdKg6d6B4,2299
|
123
|
-
google/adk/sessions/vertex_ai_session_service.py,sha256=
|
125
|
+
google/adk/sessions/vertex_ai_session_service.py,sha256=EpowNf5QAMGK0IAJExdSL8nBmw2Sx4kWWddvE4sSAZQ,11293
|
124
126
|
google/adk/tools/__init__.py,sha256=11r3IPaFNE9XWFGji_5w1eX4d_C-d2Nam3UHDki4XIo,1691
|
125
127
|
google/adk/tools/_automatic_function_calling_util.py,sha256=Cf6bBNuBggMCKPK26-T-Y0EKGTFqNvhPhMhL0s4cYAM,10882
|
126
|
-
google/adk/tools/_built_in_code_execution_tool.py,sha256=BIC6S-KB9-i7_A6vrvmh8z5bwfH-5lRUs2_N0YwkJl0,2259
|
127
128
|
google/adk/tools/_memory_entry_utils.py,sha256=ecjuQskVAnqe9dH_VI7cz88UM9h1CvT1yTPKHiJyINA,967
|
128
|
-
google/adk/tools/agent_tool.py,sha256=
|
129
|
+
google/adk/tools/agent_tool.py,sha256=cxV1SnU_sNEFpscIDBlnciE3m3aH2cIyM6reiOo2z3A,5975
|
129
130
|
google/adk/tools/base_tool.py,sha256=AnEXzXXTEYn2brfZp3rjLw9yCG6znU0NbeazBvofqHU,4456
|
130
|
-
google/adk/tools/base_toolset.py,sha256=
|
131
|
+
google/adk/tools/base_toolset.py,sha256=xJLGNOpmEh29CL9qRqIET1t8RIYUptGfMUhMglTo_Ak,2976
|
131
132
|
google/adk/tools/crewai_tool.py,sha256=CAOcizXvW_cQts5lFpS9IYcX71q_7eHoBxvFasdTBX8,2293
|
132
133
|
google/adk/tools/enterprise_search_tool.py,sha256=e2BP01rebVnl_8_8zcVgx_qWAGbWKAlvYjC0i4xR3Iw,2192
|
133
134
|
google/adk/tools/example_tool.py,sha256=gaG68obDbI29omDRmtoGSDEe1BFTV4MXk1JkfcoztFM,1947
|
134
135
|
google/adk/tools/exit_loop_tool.py,sha256=qjeQsHiOt6qgjlgNSQ0HhxyVt-X-JTwaSGo5--j2SpA,784
|
135
|
-
google/adk/tools/function_parameter_parse_util.py,sha256=
|
136
|
-
google/adk/tools/function_tool.py,sha256=
|
137
|
-
google/adk/tools/get_user_choice_tool.py,sha256=
|
138
|
-
google/adk/tools/google_search_tool.py,sha256=
|
136
|
+
google/adk/tools/function_parameter_parse_util.py,sha256=lGaAjrEs9rVKwYFQ7__aszYhuvm8Pu5FHFFAXEN-ZfY,10961
|
137
|
+
google/adk/tools/function_tool.py,sha256=zbYBbPCUX9fQc-OBFkv1e6uVbUlCZaGRn15xHKD1TXQ,5647
|
138
|
+
google/adk/tools/get_user_choice_tool.py,sha256=OL-iRBAd2HdDvMElFT8bubQWEtabNgPxz83GM0Cydms,994
|
139
|
+
google/adk/tools/google_search_tool.py,sha256=GwX1legnwKIEcaX2QY9n0tI7LcYBiv9GTJQqJ1l3amA,2264
|
139
140
|
google/adk/tools/langchain_tool.py,sha256=OlzPfPKdt3IdT_PxykDEOwbksq6SVJzShSkN-i63JQY,4523
|
140
141
|
google/adk/tools/load_artifacts_tool.py,sha256=UZ9aU0e2h2Z85JhRxG7fRdQpua_klUUF_1MEa9_Dy_A,3733
|
141
142
|
google/adk/tools/load_memory_tool.py,sha256=85nnXNDtmjQdl9DlLRNNVLECSHXdFuSSEknDgbOUS9o,2579
|
@@ -143,53 +144,61 @@ google/adk/tools/load_web_page.py,sha256=PiIX6KzHqBPy0cdskhXtT3RWUOTGS4RTbzFQGHG
|
|
143
144
|
google/adk/tools/long_running_tool.py,sha256=au3THXaV_uRsC3Q-v4rSz6Tt895vSd2xz-85nyWKSJ4,1309
|
144
145
|
google/adk/tools/preload_memory_tool.py,sha256=dnWXolahZOwO8oEFrMf6xCCV855r8tbybmkbwZWc0gk,2440
|
145
146
|
google/adk/tools/tool_context.py,sha256=WbcmgtQJJ7xyjo8C7Hmy3-wy0RY7GSd5dJ71o5_5cdU,3618
|
146
|
-
google/adk/tools/toolbox_toolset.py,sha256=
|
147
|
+
google/adk/tools/toolbox_toolset.py,sha256=3uywn-hZPopIqePXyNBhsBvbbz-jh5hPrrmfU1xgRiE,3634
|
147
148
|
google/adk/tools/transfer_to_agent_tool.py,sha256=rUuQpQD9w6FZSQ6bPVlzTDivwpNd_AFACeawvf5cAk4,784
|
148
149
|
google/adk/tools/vertex_ai_search_tool.py,sha256=8i3dRzH0dQBYxg7OZ2O1TzjB9KvxzVX0QUjChUz5Er4,3268
|
149
150
|
google/adk/tools/apihub_tool/__init__.py,sha256=89tWC4Mm-MYoJ9Al_b8nbqFLeTgPO0-j411SkLuuzaQ,653
|
150
|
-
google/adk/tools/apihub_tool/apihub_toolset.py,sha256=
|
151
|
+
google/adk/tools/apihub_tool/apihub_toolset.py,sha256=AHtkZe7g6KOvMV5uaIUs2N9Mh5yR4FudrOWzpOxN958,7004
|
151
152
|
google/adk/tools/apihub_tool/clients/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
152
|
-
google/adk/tools/apihub_tool/clients/apihub_client.py,sha256=
|
153
|
-
google/adk/tools/apihub_tool/clients/secret_client.py,sha256=
|
153
|
+
google/adk/tools/apihub_tool/clients/apihub_client.py,sha256=AU0LOs70O48_rdr5MdiF1fgEsVXX8na4Af3TDOWzWYo,11376
|
154
|
+
google/adk/tools/apihub_tool/clients/secret_client.py,sha256=U4YtXKCATGu9GWGPRGFVLXaA9rvSoHL8RYin8ZycCik,4127
|
154
155
|
google/adk/tools/application_integration_tool/__init__.py,sha256=-MTn3o2VedLtrY2mw6GW0qBtYd8BS12luK-E-Nwhg9g,799
|
155
|
-
google/adk/tools/application_integration_tool/application_integration_toolset.py,sha256=
|
156
|
-
google/adk/tools/application_integration_tool/integration_connector_tool.py,sha256=
|
157
|
-
google/adk/tools/application_integration_tool/clients/connections_client.py,sha256=
|
158
|
-
google/adk/tools/application_integration_tool/clients/integration_client.py,sha256=
|
159
|
-
google/adk/tools/
|
160
|
-
google/adk/tools/
|
161
|
-
google/adk/tools/
|
162
|
-
google/adk/tools/
|
156
|
+
google/adk/tools/application_integration_tool/application_integration_toolset.py,sha256=NSscGStxtaM_dm8YeN9uTEPGlJY7yH9kjnkTHT_UWnY,10371
|
157
|
+
google/adk/tools/application_integration_tool/integration_connector_tool.py,sha256=gKK4nZho3_ZDjmc7MssWA_tbQpNM_ug3SkZjv20Yv1w,7552
|
158
|
+
google/adk/tools/application_integration_tool/clients/connections_client.py,sha256=xE6XlHRw3ILWLBY1ruv37CEzmrLZ77iiu3hf3v6CrD4,31108
|
159
|
+
google/adk/tools/application_integration_tool/clients/integration_client.py,sha256=hLM8n97hsmvgYBtmF_KMYwr_mnlhfPvsDXzE2cI5SqE,10654
|
160
|
+
google/adk/tools/bigquery/__init__.py,sha256=tkXX7IoTzXgZjv82fjqa0_TTufxijiIr6nPsaqH1o5Y,1446
|
161
|
+
google/adk/tools/bigquery/bigquery_credentials.py,sha256=3XvDdd9FB6aLrcUo2Zec42da-eS1hOg0fSkXy1mBfak,7584
|
162
|
+
google/adk/tools/bigquery/bigquery_tool.py,sha256=PaGfJFz-LLkNxtFEbfHdu9x0ANeIQMKH6zk0sfKzDao,3713
|
163
|
+
google/adk/tools/bigquery/bigquery_toolset.py,sha256=R3ujJDQbEthoiqK6OtfquR6Z3tWGtBz8_Lt2m67qidg,2534
|
164
|
+
google/adk/tools/bigquery/client.py,sha256=N2ge1EdHIh8qwTXioOkwLTc48Q2bNAlC9MQz_cUCQBQ,1072
|
165
|
+
google/adk/tools/bigquery/metadata_tool.py,sha256=ORDJ9LyzkqkriuCLaoeuS60rjIEn5NSwdl4A3NNm-eo,7669
|
166
|
+
google/adk/tools/bigquery/query_tool.py,sha256=0AVFSE_zP-7j1FMQ0mSxMZEJZV6Kl3eCdX22no3_MsI,2496
|
167
|
+
google/adk/tools/google_api_tool/__init__.py,sha256=a_Bco5SyTQ89yb1t6Bs6NQrTsJgV22mn1quRNygVZXw,1385
|
168
|
+
google/adk/tools/google_api_tool/google_api_tool.py,sha256=vDA7YnDZCl8-ucBvIzXS-uJWX1m2KY_csTz5M3nw_Ys,2029
|
169
|
+
google/adk/tools/google_api_tool/google_api_toolset.py,sha256=M27lSCXOka4yHGGH50UVJvoEvZbWT-QBVaR1tW018tY,3773
|
170
|
+
google/adk/tools/google_api_tool/google_api_toolsets.py,sha256=A-Fz7PbuTSUsrZs8u2TQi_-xuoLz5VLuSmz54P70pCM,3551
|
163
171
|
google/adk/tools/google_api_tool/googleapi_to_openapi_converter.py,sha256=wCtPXoGpeQvKueWJZ_ilUfCRh3mMdd46Yqt5XOQNbxc,16319
|
164
172
|
google/adk/tools/mcp_tool/__init__.py,sha256=Y0cM1WBd-av4yKp9YHp9LMcUXp5fLr49MC0sTHTkAn4,1237
|
165
|
-
google/adk/tools/mcp_tool/conversion_utils.py,sha256=
|
166
|
-
google/adk/tools/mcp_tool/mcp_session_manager.py,sha256=
|
167
|
-
google/adk/tools/mcp_tool/
|
168
|
-
google/adk/tools/mcp_tool/
|
169
|
-
google/adk/tools/mcp_tool/mcp_toolset.py,sha256=ZezN4k3EWfb8r8pi8MDRsJxAjabnDpo2qvMYcxo4mBI,7420
|
173
|
+
google/adk/tools/mcp_tool/conversion_utils.py,sha256=5NV0KDLSz0I4zO-mhXijqFom2xR1aDKlyk_2OXQOKDs,5275
|
174
|
+
google/adk/tools/mcp_tool/mcp_session_manager.py,sha256=Gbg8uxQXM-g0UnGMWzCj3FSQ69N0OyXhE1jgqlsUJhw,6220
|
175
|
+
google/adk/tools/mcp_tool/mcp_tool.py,sha256=F-6r0lEflQqBXQDwjHUFOZeCKScyvAienCi8xlMmHXo,4240
|
176
|
+
google/adk/tools/mcp_tool/mcp_toolset.py,sha256=xlLyv_08Heu16XZ1kxcJc9NcfXMryjXO34zULJNtDOA,5731
|
170
177
|
google/adk/tools/openapi_tool/__init__.py,sha256=UMsewNCQjd-r1GBX1OMuUJTzJ0AlQuegIc98g04-0oU,724
|
171
178
|
google/adk/tools/openapi_tool/auth/__init__.py,sha256=NVRXscqN4V0CSCvIp8J_ee8Xyw4m-OGoZn7SmrtOsQk,637
|
172
179
|
google/adk/tools/openapi_tool/auth/auth_helpers.py,sha256=73GGGxvLZWH_YW7BEObAY-rVz3r401dm98kl5oq-nwM,15901
|
173
180
|
google/adk/tools/openapi_tool/auth/credential_exchangers/__init__.py,sha256=yKpIfNIaQD2dmPsly9Usq4lvfu1ZReVAtHlvZuSglF8,1002
|
174
181
|
google/adk/tools/openapi_tool/auth/credential_exchangers/auto_auth_credential_exchanger.py,sha256=E1wuilbik3KhzbXZC2XR0fs3NZhpOglXYwpzr6Bj6lY,3398
|
175
|
-
google/adk/tools/openapi_tool/auth/credential_exchangers/base_credential_exchanger.py,sha256=
|
182
|
+
google/adk/tools/openapi_tool/auth/credential_exchangers/base_credential_exchanger.py,sha256=zvzy5kFh0cMrXMm8cnOdfcuT2zugg0zTq3tvrLb1TGM,1781
|
176
183
|
google/adk/tools/openapi_tool/auth/credential_exchangers/oauth2_exchanger.py,sha256=1TOsoH2dEh1RBJgAWSGfAqKWYmNHJRobcfWuKGX_D9I,3869
|
177
|
-
google/adk/tools/openapi_tool/auth/credential_exchangers/service_account_exchanger.py,sha256=
|
184
|
+
google/adk/tools/openapi_tool/auth/credential_exchangers/service_account_exchanger.py,sha256=G8zUByQoSO9qWjxkJV0rAWD3Di9dD_x9KSvmAc9T1rs,3463
|
178
185
|
google/adk/tools/openapi_tool/common/__init__.py,sha256=XqwyKnQGngeU1EzoBMkL5c9BF_rD-s3nw_d2Va1MLhQ,625
|
179
|
-
google/adk/tools/openapi_tool/common/common.py,sha256=
|
180
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/__init__.py,sha256=
|
186
|
+
google/adk/tools/openapi_tool/common/common.py,sha256=uvmkl9cFmm7JOmvx_uzCW2pQcS2d4QCnf8-MMVGxMm0,8996
|
187
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/__init__.py,sha256=sXgra43rZiZ-wxkxcQgK4Qdv7-u4J9DeL9CXCLsLnvQ,1297
|
181
188
|
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_spec_parser.py,sha256=OomWa0rYWPPTs16pzT-3AvIcXwJeYBoQQgBy0R3opdI,7881
|
182
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py,sha256=
|
183
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py,sha256=
|
184
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py,sha256=
|
189
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py,sha256=zxQtizsdW8FIqhpSzGfhkQLbBXIDZOK_0h8TrXayYZ4,5532
|
190
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py,sha256=YgeyuhrULx_LOLpy2SnRWGGxJbWLXg-dFeJdm3MQLeI,9033
|
191
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py,sha256=Gc02WvYjuNT7jV327yeZsd_7nfXYz4uf1HG1bnunNqE,19118
|
185
192
|
google/adk/tools/openapi_tool/openapi_spec_parser/tool_auth_handler.py,sha256=oZYJGokSx6YMs7h7t8qBzdUDW-pIdQDS3DxaADn0Fjc,9134
|
186
193
|
google/adk/tools/retrieval/__init__.py,sha256=0euJjx0ReH8JmUI5-JU8kWRswqLxobRCDjx5zvX4rHY,1188
|
187
194
|
google/adk/tools/retrieval/base_retrieval_tool.py,sha256=4aar8Kg-6rQG7Ht1n18D5fvJnuffodFdSjeCp-GzA7w,1174
|
188
195
|
google/adk/tools/retrieval/files_retrieval.py,sha256=bucma_LL7aw15GQnYwgpDP1Lo9UqN-RFlG3w1w0sWfw,1158
|
189
196
|
google/adk/tools/retrieval/llama_index_retrieval.py,sha256=r9HUQXqygxizX0OXz7pJAWxzRRwmofAtFa3UvRR2di0,1304
|
190
197
|
google/adk/tools/retrieval/vertex_ai_rag_retrieval.py,sha256=aDsQPeScrYoHdLg0Yq7_haT1CJbHDxCPGRyhCy1ET-o,3356
|
191
|
-
|
192
|
-
|
193
|
-
google_adk-1.
|
194
|
-
google_adk-1.
|
195
|
-
google_adk-1.
|
198
|
+
google/adk/utils/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
199
|
+
google/adk/utils/instructions_utils.py,sha256=al9Z-P8qOrbxNju8cqkeH7qRg0oQH7hfmvTG-0oSAQk,3996
|
200
|
+
google_adk-1.1.1.dist-info/entry_points.txt,sha256=zL9CU-6V2yQ2oc5lrcyj55ROHrpiIePsvQJ4H6SL-zI,43
|
201
|
+
google_adk-1.1.1.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
202
|
+
google_adk-1.1.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
203
|
+
google_adk-1.1.1.dist-info/METADATA,sha256=oW3Hd8aDRt4NmL-9FCrCCtO2eePDpB9F0m_GIP90ciM,9529
|
204
|
+
google_adk-1.1.1.dist-info/RECORD,,
|