google-adk 1.6.1__py3-none-any.whl → 1.7.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/a2a/converters/event_converter.py +5 -85
- google/adk/a2a/executor/a2a_agent_executor.py +45 -16
- google/adk/agents/__init__.py +5 -0
- google/adk/agents/agent_config.py +46 -0
- google/adk/agents/base_agent.py +234 -41
- google/adk/agents/callback_context.py +41 -0
- google/adk/agents/common_configs.py +79 -0
- google/adk/agents/config_agent_utils.py +184 -0
- google/adk/agents/config_schemas/AgentConfig.json +544 -0
- google/adk/agents/invocation_context.py +5 -1
- google/adk/agents/llm_agent.py +190 -9
- google/adk/agents/loop_agent.py +29 -0
- google/adk/agents/parallel_agent.py +24 -3
- google/adk/agents/remote_a2a_agent.py +15 -3
- google/adk/agents/sequential_agent.py +22 -1
- google/adk/artifacts/gcs_artifact_service.py +24 -2
- google/adk/auth/auth_handler.py +3 -3
- google/adk/auth/credential_manager.py +23 -23
- google/adk/auth/credential_service/base_credential_service.py +6 -6
- google/adk/auth/credential_service/in_memory_credential_service.py +10 -8
- google/adk/auth/credential_service/session_state_credential_service.py +8 -8
- google/adk/auth/exchanger/oauth2_credential_exchanger.py +3 -3
- google/adk/auth/oauth2_credential_util.py +2 -2
- google/adk/auth/refresher/oauth2_credential_refresher.py +4 -4
- google/adk/cli/agent_graph.py +3 -1
- google/adk/cli/browser/index.html +1 -1
- google/adk/cli/browser/main-SRBSE46V.js +3914 -0
- google/adk/cli/browser/polyfills-B6TNHZQ6.js +17 -0
- google/adk/cli/fast_api.py +42 -2
- google/adk/cli/utils/agent_loader.py +35 -1
- google/adk/code_executors/base_code_executor.py +14 -19
- google/adk/code_executors/built_in_code_executor.py +4 -1
- google/adk/evaluation/base_eval_service.py +46 -2
- google/adk/evaluation/evaluation_generator.py +1 -1
- google/adk/evaluation/in_memory_eval_sets_manager.py +151 -0
- google/adk/evaluation/local_eval_service.py +389 -0
- google/adk/evaluation/local_eval_sets_manager.py +23 -8
- google/adk/flows/llm_flows/auto_flow.py +6 -11
- google/adk/flows/llm_flows/base_llm_flow.py +41 -23
- google/adk/flows/llm_flows/contents.py +16 -10
- google/adk/flows/llm_flows/functions.py +76 -33
- google/adk/memory/in_memory_memory_service.py +20 -14
- google/adk/models/anthropic_llm.py +44 -5
- google/adk/models/google_llm.py +11 -6
- google/adk/models/lite_llm.py +21 -4
- google/adk/plugins/__init__.py +17 -0
- google/adk/plugins/base_plugin.py +317 -0
- google/adk/plugins/plugin_manager.py +265 -0
- google/adk/runners.py +122 -18
- google/adk/sessions/database_session_service.py +26 -28
- google/adk/sessions/vertex_ai_session_service.py +14 -7
- google/adk/tools/agent_tool.py +1 -0
- google/adk/tools/apihub_tool/apihub_toolset.py +38 -39
- google/adk/tools/application_integration_tool/application_integration_toolset.py +35 -37
- google/adk/tools/application_integration_tool/integration_connector_tool.py +2 -3
- google/adk/tools/base_tool.py +9 -9
- google/adk/tools/base_toolset.py +7 -5
- google/adk/tools/bigquery/__init__.py +3 -3
- google/adk/tools/enterprise_search_tool.py +4 -2
- google/adk/tools/google_api_tool/google_api_tool.py +16 -1
- google/adk/tools/google_api_tool/google_api_toolset.py +9 -7
- google/adk/tools/google_api_tool/google_api_toolsets.py +41 -20
- google/adk/tools/google_search_tool.py +4 -2
- google/adk/tools/langchain_tool.py +2 -3
- google/adk/tools/long_running_tool.py +21 -0
- google/adk/tools/mcp_tool/mcp_toolset.py +27 -28
- google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py +8 -8
- google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py +4 -6
- google/adk/tools/retrieval/vertex_ai_rag_retrieval.py +3 -2
- google/adk/tools/tool_context.py +0 -10
- google/adk/tools/url_context_tool.py +4 -2
- google/adk/tools/vertex_ai_search_tool.py +4 -2
- google/adk/utils/model_name_utils.py +90 -0
- google/adk/version.py +1 -1
- {google_adk-1.6.1.dist-info → google_adk-1.7.0.dist-info}/METADATA +2 -2
- {google_adk-1.6.1.dist-info → google_adk-1.7.0.dist-info}/RECORD +79 -69
- google/adk/cli/browser/main-RXDVX3K6.js +0 -3914
- google/adk/cli/browser/polyfills-FFHMD2TL.js +0 -17
- {google_adk-1.6.1.dist-info → google_adk-1.7.0.dist-info}/WHEEL +0 -0
- {google_adk-1.6.1.dist-info → google_adk-1.7.0.dist-info}/entry_points.txt +0 -0
- {google_adk-1.6.1.dist-info → google_adk-1.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -70,13 +70,12 @@ class RestApiTool(BaseTool):
|
|
70
70
|
* Generates request params and body
|
71
71
|
* Attaches auth credentials to API call.
|
72
72
|
|
73
|
-
Example
|
74
|
-
|
73
|
+
Example::
|
74
|
+
|
75
75
|
# Each API operation in the spec will be turned into its own tool
|
76
76
|
# Name of the tool is the operationId of that operation, in snake case
|
77
77
|
operations = OperationGenerator().parse(openapi_spec_dict)
|
78
78
|
tool = [RestApiTool.from_parsed_operation(o) for o in operations]
|
79
|
-
```
|
80
79
|
"""
|
81
80
|
|
82
81
|
def __init__(
|
@@ -92,13 +91,12 @@ class RestApiTool(BaseTool):
|
|
92
91
|
"""Initializes the RestApiTool with the given parameters.
|
93
92
|
|
94
93
|
To generate RestApiTool from OpenAPI Specs, use OperationGenerator.
|
95
|
-
Example
|
96
|
-
|
94
|
+
Example::
|
95
|
+
|
97
96
|
# Each API operation in the spec will be turned into its own tool
|
98
97
|
# Name of the tool is the operationId of that operation, in snake case
|
99
98
|
operations = OperationGenerator().parse(openapi_spec_dict)
|
100
99
|
tool = [RestApiTool.from_parsed_operation(o) for o in operations]
|
101
|
-
```
|
102
100
|
|
103
101
|
Hint: Use google.adk.tools.openapi_tool.auth.auth_helpers to construct
|
104
102
|
auth_scheme and auth_credential.
|
@@ -24,11 +24,12 @@ from google.genai import types
|
|
24
24
|
from typing_extensions import override
|
25
25
|
from vertexai.preview import rag
|
26
26
|
|
27
|
+
from ...utils.model_name_utils import is_gemini_2_model
|
27
28
|
from ..tool_context import ToolContext
|
28
29
|
from .base_retrieval_tool import BaseRetrievalTool
|
29
30
|
|
30
31
|
if TYPE_CHECKING:
|
31
|
-
from ...models
|
32
|
+
from ...models import LlmRequest
|
32
33
|
|
33
34
|
logger = logging.getLogger('google_adk.' + __name__)
|
34
35
|
|
@@ -62,7 +63,7 @@ class VertexAiRagRetrieval(BaseRetrievalTool):
|
|
62
63
|
llm_request: LlmRequest,
|
63
64
|
) -> None:
|
64
65
|
# Use Gemini built-in Vertex AI RAG tool for Gemini 2 models.
|
65
|
-
if llm_request.model
|
66
|
+
if is_gemini_2_model(llm_request.model):
|
66
67
|
llm_request.config = (
|
67
68
|
types.GenerateContentConfig()
|
68
69
|
if not llm_request.config
|
google/adk/tools/tool_context.py
CHANGED
@@ -69,16 +69,6 @@ class ToolContext(CallbackContext):
|
|
69
69
|
def get_auth_response(self, auth_config: AuthConfig) -> AuthCredential:
|
70
70
|
return AuthHandler(auth_config).get_auth_response(self.state)
|
71
71
|
|
72
|
-
async def list_artifacts(self) -> list[str]:
|
73
|
-
"""Lists the filenames of the artifacts attached to the current session."""
|
74
|
-
if self._invocation_context.artifact_service is None:
|
75
|
-
raise ValueError('Artifact service is not initialized.')
|
76
|
-
return await self._invocation_context.artifact_service.list_artifact_keys(
|
77
|
-
app_name=self._invocation_context.app_name,
|
78
|
-
user_id=self._invocation_context.user_id,
|
79
|
-
session_id=self._invocation_context.session.id,
|
80
|
-
)
|
81
|
-
|
82
72
|
async def search_memory(self, query: str) -> SearchMemoryResponse:
|
83
73
|
"""Searches the memory of the current user."""
|
84
74
|
if self._invocation_context.memory_service is None:
|
@@ -19,6 +19,8 @@ from typing import TYPE_CHECKING
|
|
19
19
|
from google.genai import types
|
20
20
|
from typing_extensions import override
|
21
21
|
|
22
|
+
from ..utils.model_name_utils import is_gemini_1_model
|
23
|
+
from ..utils.model_name_utils import is_gemini_2_model
|
22
24
|
from .base_tool import BaseTool
|
23
25
|
from .tool_context import ToolContext
|
24
26
|
|
@@ -46,9 +48,9 @@ class UrlContextTool(BaseTool):
|
|
46
48
|
) -> None:
|
47
49
|
llm_request.config = llm_request.config or types.GenerateContentConfig()
|
48
50
|
llm_request.config.tools = llm_request.config.tools or []
|
49
|
-
if llm_request.model
|
51
|
+
if is_gemini_1_model(llm_request.model):
|
50
52
|
raise ValueError('Url context tool can not be used in Gemini 1.x.')
|
51
|
-
elif llm_request.model
|
53
|
+
elif is_gemini_2_model(llm_request.model):
|
52
54
|
llm_request.config.tools.append(
|
53
55
|
types.Tool(url_context=types.UrlContext())
|
54
56
|
)
|
@@ -20,6 +20,8 @@ from typing import TYPE_CHECKING
|
|
20
20
|
from google.genai import types
|
21
21
|
from typing_extensions import override
|
22
22
|
|
23
|
+
from ..utils.model_name_utils import is_gemini_1_model
|
24
|
+
from ..utils.model_name_utils import is_gemini_model
|
23
25
|
from .base_tool import BaseTool
|
24
26
|
from .tool_context import ToolContext
|
25
27
|
|
@@ -86,8 +88,8 @@ class VertexAiSearchTool(BaseTool):
|
|
86
88
|
tool_context: ToolContext,
|
87
89
|
llm_request: LlmRequest,
|
88
90
|
) -> None:
|
89
|
-
if llm_request.model
|
90
|
-
if
|
91
|
+
if is_gemini_model(llm_request.model):
|
92
|
+
if is_gemini_1_model(llm_request.model) and llm_request.config.tools:
|
91
93
|
raise ValueError(
|
92
94
|
'Vertex AI search tool can not be used with other tools in Gemini'
|
93
95
|
' 1.x.'
|
@@ -0,0 +1,90 @@
|
|
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
|
+
"""Utilities for model name validation and parsing."""
|
16
|
+
|
17
|
+
from __future__ import annotations
|
18
|
+
|
19
|
+
import re
|
20
|
+
from typing import Optional
|
21
|
+
|
22
|
+
|
23
|
+
def extract_model_name(model_string: str) -> str:
|
24
|
+
"""Extract the actual model name from either simple or path-based format.
|
25
|
+
|
26
|
+
Args:
|
27
|
+
model_string: Either a simple model name like "gemini-2.5-pro" or
|
28
|
+
a path-based model name like "projects/.../models/gemini-2.0-flash-001"
|
29
|
+
|
30
|
+
Returns:
|
31
|
+
The extracted model name (e.g., "gemini-2.5-pro")
|
32
|
+
"""
|
33
|
+
# Pattern for path-based model names
|
34
|
+
path_pattern = (
|
35
|
+
r'^projects/[^/]+/locations/[^/]+/publishers/[^/]+/models/(.+)$'
|
36
|
+
)
|
37
|
+
match = re.match(path_pattern, model_string)
|
38
|
+
if match:
|
39
|
+
return match.group(1)
|
40
|
+
|
41
|
+
# If it's not a path-based model, return as-is (simple model name)
|
42
|
+
return model_string
|
43
|
+
|
44
|
+
|
45
|
+
def is_gemini_model(model_string: Optional[str]) -> bool:
|
46
|
+
"""Check if the model is a Gemini model using regex patterns.
|
47
|
+
|
48
|
+
Args:
|
49
|
+
model_string: Either a simple model name or path-based model name
|
50
|
+
|
51
|
+
Returns:
|
52
|
+
True if it's a Gemini model, False otherwise
|
53
|
+
"""
|
54
|
+
if not model_string:
|
55
|
+
return False
|
56
|
+
|
57
|
+
model_name = extract_model_name(model_string)
|
58
|
+
return re.match(r'^gemini-', model_name) is not None
|
59
|
+
|
60
|
+
|
61
|
+
def is_gemini_1_model(model_string: Optional[str]) -> bool:
|
62
|
+
"""Check if the model is a Gemini 1.x model using regex patterns.
|
63
|
+
|
64
|
+
Args:
|
65
|
+
model_string: Either a simple model name or path-based model name
|
66
|
+
|
67
|
+
Returns:
|
68
|
+
True if it's a Gemini 1.x model, False otherwise
|
69
|
+
"""
|
70
|
+
if not model_string:
|
71
|
+
return False
|
72
|
+
|
73
|
+
model_name = extract_model_name(model_string)
|
74
|
+
return re.match(r'^gemini-1\.\d+', model_name) is not None
|
75
|
+
|
76
|
+
|
77
|
+
def is_gemini_2_model(model_string: Optional[str]) -> bool:
|
78
|
+
"""Check if the model is a Gemini 2.x model using regex patterns.
|
79
|
+
|
80
|
+
Args:
|
81
|
+
model_string: Either a simple model name or path-based model name
|
82
|
+
|
83
|
+
Returns:
|
84
|
+
True if it's a Gemini 2.x model, False otherwise
|
85
|
+
"""
|
86
|
+
if not model_string:
|
87
|
+
return False
|
88
|
+
|
89
|
+
model_name = extract_model_name(model_string)
|
90
|
+
return re.match(r'^gemini-2\.\d+', model_name) is not None
|
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.7.0
|
4
4
|
Summary: Agent Development Kit
|
5
5
|
Author-email: Google LLC <googleapis-packages@google.com>
|
6
6
|
Requires-Python: >=3.9
|
@@ -47,7 +47,7 @@ Requires-Dist: tzlocal>=5.3
|
|
47
47
|
Requires-Dist: uvicorn>=0.34.0
|
48
48
|
Requires-Dist: watchdog>=6.0.0
|
49
49
|
Requires-Dist: websockets>=15.0.1
|
50
|
-
Requires-Dist: a2a-sdk>=0.2.
|
50
|
+
Requires-Dist: a2a-sdk>=0.2.11 ; extra == "a2a" and (python_version>='3.10')
|
51
51
|
Requires-Dist: flit>=3.10.0 ; extra == "dev"
|
52
52
|
Requires-Dist: isort>=6.0.0 ; extra == "dev"
|
53
53
|
Requires-Dist: mypy>=1.15.0 ; extra == "dev"
|
@@ -1,87 +1,91 @@
|
|
1
1
|
google/adk/__init__.py,sha256=sSPQK3r0tW8ahl-k8SXkZvMcbiTbGICCtrw6KkFucyg,726
|
2
2
|
google/adk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
google/adk/runners.py,sha256=
|
3
|
+
google/adk/runners.py,sha256=U9aP_5C6Qx8ASlXyefbQ430q2D69I75wj_I8fwwjTX0,23744
|
4
4
|
google/adk/telemetry.py,sha256=6E6qf1tSk3J-BE2fTzJTaidiDsgsqTLyIn_8tlDJ34U,8934
|
5
|
-
google/adk/version.py,sha256=
|
5
|
+
google/adk/version.py,sha256=mmhTt9LmwArVzHGP7mkddOtOl1bWuAe8A1c0aLQeT_w,626
|
6
6
|
google/adk/a2a/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
7
7
|
google/adk/a2a/converters/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
8
|
-
google/adk/a2a/converters/event_converter.py,sha256=
|
8
|
+
google/adk/a2a/converters/event_converter.py,sha256=Itji5o3CWBaf-2xgNta2mwfiIZQx01glTJxu5CwzDqU,15776
|
9
9
|
google/adk/a2a/converters/part_converter.py,sha256=fk8ifMB_w2dQX6pWSTqMwyxZt1UUhNDIU5kFm9Rhrsg,7619
|
10
10
|
google/adk/a2a/converters/request_converter.py,sha256=2ZNLVrqHkt6MILIiyXG4j1eqSkBX2w1oTufvH8ly724,2000
|
11
11
|
google/adk/a2a/converters/utils.py,sha256=8_4gT2eBhAYTD2ET2x9gyqSxPzWcRmiIkr2ggY2Wqu8,2532
|
12
12
|
google/adk/a2a/executor/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
13
|
-
google/adk/a2a/executor/a2a_agent_executor.py,sha256=
|
13
|
+
google/adk/a2a/executor/a2a_agent_executor.py,sha256=lRL_OTtAI34brMnN1fEBb_f3y2txi1g6JvogHGtsjl8,9549
|
14
14
|
google/adk/a2a/executor/task_result_aggregator.py,sha256=a-I9OqHR3rMqip-SvX6TomQh-z5kO7tBky60K0zHr7Q,2497
|
15
15
|
google/adk/a2a/logs/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
16
16
|
google/adk/a2a/logs/log_utils.py,sha256=U8bDM57ZnNhQjQO9RoRpERdQTO8EHThqJ11vRX04L6U,11570
|
17
|
-
google/adk/agents/__init__.py,sha256=
|
17
|
+
google/adk/agents/__init__.py,sha256=KnzJ7HTFOx-_QTwKDk2x56L63E8xLjjb5sBIXFmEyhI,1176
|
18
18
|
google/adk/agents/active_streaming_tool.py,sha256=vFuh_PkdF5EyyneBBJ7Al8ojeTIR3OtsxLjckr9DbXE,1194
|
19
|
-
google/adk/agents/
|
20
|
-
google/adk/agents/
|
21
|
-
google/adk/agents/
|
19
|
+
google/adk/agents/agent_config.py,sha256=0ZhMnAzjp2oRLJPAO97iEv-52Ctf3Rr-SCrmpdq7Vgk,1645
|
20
|
+
google/adk/agents/base_agent.py,sha256=k1TJsecBvBqOBntixjPPX93OKQY76Lk_CfmciSEVxIQ,19521
|
21
|
+
google/adk/agents/callback_context.py,sha256=2XO-pJ6x-VtfMFrHxlJMML3Cg7l2VfL1KuBhTPSpxNM,5007
|
22
|
+
google/adk/agents/common_configs.py,sha256=WVlL8geH4ZIKxWjpLDX97rdXpURl0fcGlPEmXllxg4s,2265
|
23
|
+
google/adk/agents/config_agent_utils.py,sha256=mYRd7_JmMgpfHLXHeblCfiC0mwE-dV5HTkaZghGWlpc,5714
|
24
|
+
google/adk/agents/invocation_context.py,sha256=jzdN4XpdOdXvZXvULmS-Gnb7nCZjyKM9aa__DRcVJXI,6516
|
22
25
|
google/adk/agents/langgraph_agent.py,sha256=1MI-jsLRncMy4mpjSsGU5FL6zbK-k4FxiupnujgYVNE,4287
|
23
26
|
google/adk/agents/live_request_queue.py,sha256=AudgMP6VfGjNgH7VeQamKJ6Yo2n5eIlikcscoOqprNU,2109
|
24
|
-
google/adk/agents/llm_agent.py,sha256=
|
25
|
-
google/adk/agents/loop_agent.py,sha256=
|
26
|
-
google/adk/agents/parallel_agent.py,sha256=
|
27
|
+
google/adk/agents/llm_agent.py,sha256=nTLfYRXWqPMBKqfzvyINVfniZnwOBU6sVYqLfqbWteo,22539
|
28
|
+
google/adk/agents/loop_agent.py,sha256=tgXLOuCykPfg2aEjtgBHV20qkQtewAyYyVgbn3oLGOs,2802
|
29
|
+
google/adk/agents/parallel_agent.py,sha256=8m2xgxFHUTqxqXZZgy63IFHsGZvh6gkTBixEckiRTiQ,4200
|
27
30
|
google/adk/agents/readonly_context.py,sha256=MyRXiSTT8kFheq7VYQjXow6mwYpdZim4PgI2iKT-XIo,1659
|
28
|
-
google/adk/agents/remote_a2a_agent.py,sha256=
|
31
|
+
google/adk/agents/remote_a2a_agent.py,sha256=4uEzE7pzZCfM7Nj05ESlpkgajhLzg8sNbkb7RUetR14,17797
|
29
32
|
google/adk/agents/run_config.py,sha256=XrrmUrgsfG9uFuZS786GKbQ0kBrK6CtRxU8hrdkoG90,3629
|
30
|
-
google/adk/agents/sequential_agent.py,sha256=
|
33
|
+
google/adk/agents/sequential_agent.py,sha256=VY_CmBZ3zS_PitsIj2cPd-eRtl7EwHdPh4c-D7osUOw,3418
|
31
34
|
google/adk/agents/transcription_entry.py,sha256=HL8j2xvtdrcP4_uxy55ASCmLFrc8KchvV2eoGnwZnqc,1178
|
35
|
+
google/adk/agents/config_schemas/AgentConfig.json,sha256=U4seKS61h0JNpv01DKYL5ovABk0sqKZF-SexWnLsB1s,12517
|
32
36
|
google/adk/artifacts/__init__.py,sha256=D5DYoVYR0tOd2E_KwRu0Cp7yvV25KGuIQmQeCRDyK-k,846
|
33
37
|
google/adk/artifacts/base_artifact_service.py,sha256=H-t5nckLTfr330utj8vxjH45z81h_h_c9EZzd3A76dY,3452
|
34
|
-
google/adk/artifacts/gcs_artifact_service.py,sha256=
|
38
|
+
google/adk/artifacts/gcs_artifact_service.py,sha256=RpEqbehQ0WnyZmCWEeJDY-TU5l1Bf2pSUekCQEcGOXc,6506
|
35
39
|
google/adk/artifacts/in_memory_artifact_service.py,sha256=Mxf2vN5jqrbyo-tKhzt6DfS2sU613oQIV7lDRcjf_wI,4146
|
36
40
|
google/adk/auth/__init__.py,sha256=GoFe0aZGdp0ExNE4rXNn1RuXLaB64j7Z-2C5e2Hsh8c,908
|
37
41
|
google/adk/auth/auth_credential.py,sha256=F1cMHe_gda5N6RXlyB0IYLLos-Jz-WcNFkIm9SjSiGQ,7012
|
38
|
-
google/adk/auth/auth_handler.py,sha256=
|
42
|
+
google/adk/auth/auth_handler.py,sha256=jCemodgBp6CrL09sUUrpXXUTMuVSz8T_RlvgVjZ_OOY,6828
|
39
43
|
google/adk/auth/auth_preprocessor.py,sha256=RleOG5I7L1EWVRdX_bC1WtKnt0FDKAcXSSh1RexJqtE,4309
|
40
44
|
google/adk/auth/auth_schemes.py,sha256=dxx9bxjOWoae1fSVxbpaVTwa0I4v76_QJJFEX--1ueA,2260
|
41
45
|
google/adk/auth/auth_tool.py,sha256=m9m_ecoBLjsNpEf34s3hmv5PpWXZbpc4yaV7NgVSOoA,3694
|
42
|
-
google/adk/auth/credential_manager.py,sha256=
|
43
|
-
google/adk/auth/oauth2_credential_util.py,sha256=
|
46
|
+
google/adk/auth/credential_manager.py,sha256=fa9GtRaz7jPzwT9KdtPvKPXz0USsDPpPj5k5hma4nV8,9573
|
47
|
+
google/adk/auth/oauth2_credential_util.py,sha256=01OLVq68k3135TwYPEo3IHnXY2mg8bxVVIyTdu35Mm8,3340
|
44
48
|
google/adk/auth/credential_service/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
45
|
-
google/adk/auth/credential_service/base_credential_service.py,sha256=
|
46
|
-
google/adk/auth/credential_service/in_memory_credential_service.py,sha256=
|
47
|
-
google/adk/auth/credential_service/session_state_credential_service.py,sha256
|
49
|
+
google/adk/auth/credential_service/base_credential_service.py,sha256=pDjqwVgpY4IobFqNhVTlEXkEn4ORsIv2C0W5vPvEysk,2362
|
50
|
+
google/adk/auth/credential_service/in_memory_credential_service.py,sha256=Z47RDq9rtbYNAt6m75lvB3xyI4uA6pFPQymSddYYM7w,2220
|
51
|
+
google/adk/auth/credential_service/session_state_credential_service.py,sha256=-K93F7Z3bxjliDzy-42cfN2kU3qF3349amTt9XGW8fs,2660
|
48
52
|
google/adk/auth/exchanger/__init__.py,sha256=RHCK_Zg7hXzBKvz2Vrwvbx_cMXWittidIZToszaL3Nc,720
|
49
53
|
google/adk/auth/exchanger/base_credential_exchanger.py,sha256=Uqzs_NhEDmuH5n0U_ES5fHlMSagyYEc5JKu-5GdOC_A,1644
|
50
54
|
google/adk/auth/exchanger/credential_exchanger_registry.py,sha256=Nsk9BMmhFbZsXQwPckm8elXfbk6iIRSrvegR6DpcONo,1855
|
51
|
-
google/adk/auth/exchanger/oauth2_credential_exchanger.py,sha256=
|
55
|
+
google/adk/auth/exchanger/oauth2_credential_exchanger.py,sha256=cG_iSqZWVqN6mSMUoeuR9WwYoOlX3dV-R8JhMsVtUI4,3649
|
52
56
|
google/adk/auth/refresher/__init__.py,sha256=DEEkESlvEteCpO4QcDExm6K8S8y7l_oS-A2TK1Oh1xU,720
|
53
57
|
google/adk/auth/refresher/base_credential_refresher.py,sha256=oDWBAuSnt5-00f8LwTrwTptuwkkUXknad8Zbp2mmOA4,2192
|
54
58
|
google/adk/auth/refresher/credential_refresher_registry.py,sha256=ioHclgxCtpSeiUcMq9jwzPn0IzzxrQLpWSpHy90folA,1877
|
55
|
-
google/adk/auth/refresher/oauth2_credential_refresher.py,sha256=
|
59
|
+
google/adk/auth/refresher/oauth2_credential_refresher.py,sha256=j1sCh9Dm7mI2j2L4l3FWLygbt1cDWbLJh4YkWcUrVCw,4035
|
56
60
|
google/adk/cli/__init__.py,sha256=ouPYnIY02VmGNfpA6IT8oSQdfeZd1LHVoDSt_x8zQPU,609
|
57
61
|
google/adk/cli/__main__.py,sha256=gN8rRWlkh_3gLI-oYByxrKpCW9BIfDwrr0YuyisxmHo,646
|
58
|
-
google/adk/cli/agent_graph.py,sha256=
|
62
|
+
google/adk/cli/agent_graph.py,sha256=WcITAebQ_MoiXcwEPujNcqseklHc0-fIX1qul_01Pec,9902
|
59
63
|
google/adk/cli/cli.py,sha256=5hbWTJYn9eOd4OVNZvvfJ4WuhuNf1ICBP6j6tb-kSFg,6724
|
60
64
|
google/adk/cli/cli_create.py,sha256=S5sAKIzTjaf3bWoh6nUCSxm9koxdkN0SkTnOtsl0Oqs,8010
|
61
65
|
google/adk/cli/cli_deploy.py,sha256=23q-CxVDgqznjCnRcQuWv1UWPMd6hk2AL8uiJDEFVSE,13457
|
62
66
|
google/adk/cli/cli_eval.py,sha256=1o57D9eyerNjX9jnUZ_waMj0SXehlYEmFIWE-nU1kkM,10445
|
63
67
|
google/adk/cli/cli_tools_click.py,sha256=D2w_6Qr9elalOyr40dcLDvqfv2vbKHbX5IqDZCNYXwg,30132
|
64
|
-
google/adk/cli/fast_api.py,sha256=
|
68
|
+
google/adk/cli/fast_api.py,sha256=3OlbCHNKAD0EfhmomyBCDn5goQKajem-DEfGjq5lZao,37930
|
65
69
|
google/adk/cli/browser/adk_favicon.svg,sha256=giyzTZ5Xe6HFU63NgTIZDm35L-RmID-odVFOZ4vMo1M,3132
|
66
70
|
google/adk/cli/browser/chunk-EQDQRRRY.js,sha256=zoIQOjwI8xT4OOy4udgW8mBHzJK4_MIi2U1yFFyiDmU,1279
|
67
71
|
google/adk/cli/browser/chunk-TXJFAAIW.js,sha256=AqgOMbEdaaqGY1sD0S8Wfwb2oo2XQph3XFUvVYX5aME,18646
|
68
|
-
google/adk/cli/browser/index.html,sha256=
|
69
|
-
google/adk/cli/browser/main-
|
70
|
-
google/adk/cli/browser/polyfills-
|
72
|
+
google/adk/cli/browser/index.html,sha256=L-VBi_ruu7mmMJFOMg2VJHETluc01_ipu3poTWxnt44,50238
|
73
|
+
google/adk/cli/browser/main-SRBSE46V.js,sha256=sFcLTxn51pVn4nFyMLR6aW4LKE2LKSx1cr5XJTAhWkQ,3832632
|
74
|
+
google/adk/cli/browser/polyfills-B6TNHZQ6.js,sha256=OZqRhQr8Rry7NUXeV4HSUfYYw8SzT-EdeYhQiper93Y,35174
|
71
75
|
google/adk/cli/browser/styles-4VDSPQ37.css,sha256=QF3xmtXMt44nFiCh0aKnvQwQiZptr3sW1u9bzltukAI,5522
|
72
76
|
google/adk/cli/browser/assets/ADK-512-color.svg,sha256=1xEk09vFjg7uh4MZ8JIHZW4-Z3AB9kywkFdXfeQogbM,2402
|
73
77
|
google/adk/cli/browser/assets/audio-processor.js,sha256=BTYefpDeOz7VQveAoC_WFleLY9JkJs_FuGS0oQiadIA,1769
|
74
78
|
google/adk/cli/browser/assets/config/runtime-config.json,sha256=obOpZdzA-utX_wG6I687-5W7i1f8W9ixXOb7ky7rdvU,22
|
75
79
|
google/adk/cli/utils/__init__.py,sha256=2PrkBZeLjc3mXZMDJkev3IKgd07d4CheASgTB3tqz8Y,1528
|
76
|
-
google/adk/cli/utils/agent_loader.py,sha256=
|
80
|
+
google/adk/cli/utils/agent_loader.py,sha256=7WpZbeKS-JjJ8CpbSqRrRnnvlbwSo5Hnsue8B1OE0Fo,7914
|
77
81
|
google/adk/cli/utils/cleanup.py,sha256=c8kMxpDoNsr49C0O68pptpmy8oce1PjaLtvUy200pWw,1296
|
78
82
|
google/adk/cli/utils/common.py,sha256=brmJF3t-h_HCCS9FQtgqY0Ozk1meeM6a1omwcmsbDBQ,788
|
79
83
|
google/adk/cli/utils/envs.py,sha256=XOEFNiQlgTTyDvaH1FHmgOnPeC3MHsx_DhyOGa-tSAY,1684
|
80
84
|
google/adk/cli/utils/evals.py,sha256=aGBEw7QOnyzmudKiz0JlUTyiLHlMd53r8_RuOqQneTQ,8235
|
81
85
|
google/adk/cli/utils/logs.py,sha256=ARcKVGDi8vHReg1DO7ZGbUBk0RejRMzKf2xHvIWn2xA,2296
|
82
86
|
google/adk/code_executors/__init__.py,sha256=dJ8qAZyj3jm8fNnzQWoWpI7xSVUGhU5qIxbEDpouizc,1641
|
83
|
-
google/adk/code_executors/base_code_executor.py,sha256=
|
84
|
-
google/adk/code_executors/built_in_code_executor.py,sha256=
|
87
|
+
google/adk/code_executors/base_code_executor.py,sha256=DxQE2jATlGt0I8CD1Uo7GHc1uHcn4L4VkgT7p5KZ3CE,3058
|
88
|
+
google/adk/code_executors/built_in_code_executor.py,sha256=1xd9_k4WYErUS36_4XkWnzGtj5SmmvTmb_t7o_P9Grw,1960
|
85
89
|
google/adk/code_executors/code_execution_utils.py,sha256=kPK4q7lmh4SQ46X5t5gnhlaEKX0PPEvjMzeFgTWGC0w,7372
|
86
90
|
google/adk/code_executors/code_executor_context.py,sha256=W8kLnyDLq0Ci_8dDHXv9CmkQITmNKhGc8f82gC7v5ik,6732
|
87
91
|
google/adk/code_executors/container_code_executor.py,sha256=__Pj9TYhVTb8CEvWlBXT4J5aPMzhmccWilX0ogY48cs,6560
|
@@ -93,7 +97,7 @@ google/adk/evaluation/__init__.py,sha256=MjSF-43UTBEp_4RKf7VK7RpFbt-9SKYYfiOgSwv
|
|
93
97
|
google/adk/evaluation/_eval_set_results_manager_utils.py,sha256=Dix0qNaCdJAVBV5lpdXVMNCTLJNZRCq3B1CD6SFd_-A,1497
|
94
98
|
google/adk/evaluation/_eval_sets_manager_utils.py,sha256=vr0zI6hN1u9SDU7nOwUVtbUp_BtQOHOWcCZ21i1bt5s,3417
|
95
99
|
google/adk/evaluation/agent_evaluator.py,sha256=_-4Z9LbR2nD5Q3Fz4rxRclkxpacOLBQpllYFJbdNUhY,16616
|
96
|
-
google/adk/evaluation/base_eval_service.py,sha256=
|
100
|
+
google/adk/evaluation/base_eval_service.py,sha256=hYMDkKs6xU3N_W6fOeV4x90dE_064Xo8meCbiljV6Qw,5617
|
97
101
|
google/adk/evaluation/constants.py,sha256=grwNqCzZJhJuK3YNcj7EDZhflZX3FcJpb0MulYUdFS8,745
|
98
102
|
google/adk/evaluation/eval_case.py,sha256=FFVkQheQQtNwu2AUxwe-mGH-s-hq6ivRM6FERXRDyQk,3211
|
99
103
|
google/adk/evaluation/eval_metrics.py,sha256=5q4qlNG2NPJYt7ZS_F8LZSTUXe4evy1Worrg6ua_NR4,3085
|
@@ -102,16 +106,18 @@ google/adk/evaluation/eval_set.py,sha256=QQjwXcb2qp1FRchu7xt5L9_DT7D1fKxSFQ9QkyB
|
|
102
106
|
google/adk/evaluation/eval_set_results_manager.py,sha256=JP0Cy9s-T9IPEYheeEX4_5zdKv-FLJ8St1uSwa9hZvA,1610
|
103
107
|
google/adk/evaluation/eval_sets_manager.py,sha256=j6t-Vf5vDQXPG5cCQ3VTrkWMcmJv-up_e3UKIlU-AoI,2380
|
104
108
|
google/adk/evaluation/evaluation_constants.py,sha256=q3FpEx1PDoj0VjVwHDZ6U-LNZ1_uApM03d2vOevvHA4,857
|
105
|
-
google/adk/evaluation/evaluation_generator.py,sha256=
|
109
|
+
google/adk/evaluation/evaluation_generator.py,sha256=KTl1kST6unAl3Yu8u0GzJC8MokJ7tgYagjUdeTlcrEk,8217
|
106
110
|
google/adk/evaluation/evaluator.py,sha256=ACERS1jNCcqPPoI84qt68-B_aAr8o729cd2Qmb-FrXE,1673
|
107
111
|
google/adk/evaluation/final_response_match_v1.py,sha256=PamGQc3WwIYR1RU6Qhld4PbEFOSEA7LAK81nZVm2UCk,3768
|
108
112
|
google/adk/evaluation/final_response_match_v2.py,sha256=BzdgPbsi73uapkZIyL6HJJ_rukw_nfeA0Sx5OHBW6NQ,11606
|
109
113
|
google/adk/evaluation/gcs_eval_set_results_manager.py,sha256=XS4kcXgiTjuLPvfA2MSR6dZDo-8PZTQTilvOFW5jo64,4444
|
110
114
|
google/adk/evaluation/gcs_eval_sets_manager.py,sha256=K1zHJeKi8oIvuBMpCsfMEJRu20B5F6_pgN_bpHi0NCA,7559
|
115
|
+
google/adk/evaluation/in_memory_eval_sets_manager.py,sha256=niTREvgC2WygJOQaeJQ5CexFydz7KIy9lEJq279mFEg,5148
|
111
116
|
google/adk/evaluation/llm_as_judge.py,sha256=eiV42WvZOcMeVyorwGcyfthasjCBi3dWsGhJ_uv2v_o,5214
|
112
117
|
google/adk/evaluation/llm_as_judge_utils.py,sha256=_8yW_TStGV4iGZYIJX5fGgvQljgz0hGCheOChWtgmKk,1411
|
118
|
+
google/adk/evaluation/local_eval_service.py,sha256=MqP1hMMuk4KGmQGeInrnp6vpXKiKrH7Z3-ZYEKRAwqw,14461
|
113
119
|
google/adk/evaluation/local_eval_set_results_manager.py,sha256=eLZz95r0Z-xyT1m0MxdmLxSjGzmmycLWclfsGn1aVzM,3703
|
114
|
-
google/adk/evaluation/local_eval_sets_manager.py,sha256=
|
120
|
+
google/adk/evaluation/local_eval_sets_manager.py,sha256=TqNk-D2ihYenjdRGJbfEqMNWzNXE-RuZ2gs7u_bkYIQ,10819
|
115
121
|
google/adk/evaluation/metric_evaluator_registry.py,sha256=8jVG642_yIIELg3e0ihU3FevVX09s9C7azovxsQE1jk,2915
|
116
122
|
google/adk/evaluation/response_evaluator.py,sha256=2GKX2QWKspok8n5EaqJl_F4PO0wOYvt-C9H7rRjMvKs,3007
|
117
123
|
google/adk/evaluation/safety_evaluator.py,sha256=NxjI6a82TNgNzoOJimfRGpNeUqD_FzlW-rMp7nCirnE,1936
|
@@ -132,28 +138,28 @@ google/adk/flows/llm_flows/_code_execution.py,sha256=GP7-Hwy4ebFM0bwI_tEnvCmWl5q
|
|
132
138
|
google/adk/flows/llm_flows/_nl_planning.py,sha256=sGKa-wkVuDqlb6e9OadKAYhIAM2xD0iqtYBm0MJRszo,4078
|
133
139
|
google/adk/flows/llm_flows/agent_transfer.py,sha256=N2He1AD4ne6UYikYplCVhU-KYZLbLIwxJRlunr2WbKY,3888
|
134
140
|
google/adk/flows/llm_flows/audio_transcriber.py,sha256=x0LeOZLDPVPzPCYNYA3JyAEAjCLMzmXCwhq12R67kDc,3541
|
135
|
-
google/adk/flows/llm_flows/auto_flow.py,sha256=
|
136
|
-
google/adk/flows/llm_flows/base_llm_flow.py,sha256=
|
141
|
+
google/adk/flows/llm_flows/auto_flow.py,sha256=BlqLhMOO-l1m5DfF-B1QwPn_HvK6gZqtLukvCr1lcQY,1467
|
142
|
+
google/adk/flows/llm_flows/base_llm_flow.py,sha256=2mVX9UlK7MpCBuHyj65OcaBz8QQXE4-aV-j4Z1Kvu1U,23365
|
137
143
|
google/adk/flows/llm_flows/basic.py,sha256=263pfk6PIqKO-7BWo--bsBbpZJ8u5R9OK__WhpBgIbM,2848
|
138
|
-
google/adk/flows/llm_flows/contents.py,sha256=
|
139
|
-
google/adk/flows/llm_flows/functions.py,sha256=
|
144
|
+
google/adk/flows/llm_flows/contents.py,sha256=PTPEyOu4VtU9mGW3Bm7Kj26-OO839AoN-zNEy6TX204,14924
|
145
|
+
google/adk/flows/llm_flows/functions.py,sha256=GwYHpaXwOgbGaunlFR2uS9ItyN6MLmSMnNYlNcwG0dg,20084
|
140
146
|
google/adk/flows/llm_flows/identity.py,sha256=X4CRg12NvnopmydU9gbFJI4lW1_otN-w_GOAuPvKrXo,1651
|
141
147
|
google/adk/flows/llm_flows/instructions.py,sha256=sO2dQ5hn6ybjXs2fWYWvEFVtACdpiiP0yKf9eNVjhhM,2879
|
142
148
|
google/adk/flows/llm_flows/single_flow.py,sha256=gC677SxxammKx1XkZBzUdgBjDzeymKRcRQQxFGIur8Y,1904
|
143
149
|
google/adk/memory/__init__.py,sha256=N_K_03mtTC2Hl1biXdbkgrbdJVvF7EhKs6jgJMAsEpo,1250
|
144
150
|
google/adk/memory/_utils.py,sha256=6hba7T4ZJ00K3tX1kLuiuiN02E844XtfR1lFEGa-AaM,797
|
145
151
|
google/adk/memory/base_memory_service.py,sha256=KlpjlgZopqKM19QP9X0eKLBSVG10hHjD4qgEEfwdb9k,1987
|
146
|
-
google/adk/memory/in_memory_memory_service.py,sha256=
|
152
|
+
google/adk/memory/in_memory_memory_service.py,sha256=H3G5ja_aUpTHBDhbqxK5w4HXci1q-HBks8u28S7fedA,3174
|
147
153
|
google/adk/memory/memory_entry.py,sha256=NSISrQHX6sww0J7wXP-eqxkGAkF2irqCU_UH-ziWACc,1092
|
148
154
|
google/adk/memory/vertex_ai_memory_bank_service.py,sha256=Nr0R37EM3uFzpQAC5g7aDogMljgn6MIIyoTXC4qrZYU,4711
|
149
155
|
google/adk/memory/vertex_ai_rag_memory_service.py,sha256=mNilkk4VtFQj6QYyX-DCPJ4kddKRgo68I3XfVhG8B14,6817
|
150
156
|
google/adk/models/__init__.py,sha256=jnI2M8tz4IN_WOUma4PIEdGOBDIotXcQpseH6P1VgZU,929
|
151
|
-
google/adk/models/anthropic_llm.py,sha256=
|
157
|
+
google/adk/models/anthropic_llm.py,sha256=b-mkGMnum6D3ACXRevE6yfrGtQ6YCyITs2lw4L96o10,9246
|
152
158
|
google/adk/models/base_llm.py,sha256=85Oo0U0zyZK3iJZz9XVovnCvXNgVQ9Dvcf80VecWTNo,4017
|
153
159
|
google/adk/models/base_llm_connection.py,sha256=y_pNFA2xlwnsP6dt7BfoezfzoZ5gSZJnTogd7o7DodI,2254
|
154
160
|
google/adk/models/gemini_llm_connection.py,sha256=M0dXHcVgDaPB97n6DWFjGjqwhuJkJMcbDYP9drK052U,7349
|
155
|
-
google/adk/models/google_llm.py,sha256=
|
156
|
-
google/adk/models/lite_llm.py,sha256=
|
161
|
+
google/adk/models/google_llm.py,sha256=Duj0HvQ0bafsZoL50AgpIT7t7QeNmeulvTHnKdOm4Bc,12279
|
162
|
+
google/adk/models/lite_llm.py,sha256=7dReLPrbpc8_S_c5178GH3aF4IIcY2Kdo5OQSBTCbYY,25514
|
157
163
|
google/adk/models/llm_request.py,sha256=nJdE_mkAwa_QNkl7FJdw5Ys748vM5RqaRYiZtke-mDA,3008
|
158
164
|
google/adk/models/llm_response.py,sha256=tQOfXCnJoiGp-Oxp1_lAKokx0klAzbwKklngKg4ExgQ,4563
|
159
165
|
google/adk/models/registry.py,sha256=5VQyHMEaMbVp9TdscTqDAOo9uXB85zjrbMrT3zQElLE,2542
|
@@ -165,54 +171,57 @@ google/adk/platform/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0B
|
|
165
171
|
google/adk/platform/thread.py,sha256=xuWOs_WYB-kxm5uCPCHLoNvznsvnHUihNEPFJ0UX6Ws,1028
|
166
172
|
google/adk/platform/internal/__init__.py,sha256=w-A2-hOYQpNUCFHe26ya5isGhoO-Kxq6JU2S646TIr8,623
|
167
173
|
google/adk/platform/internal/thread.py,sha256=MHRyjk4KMoIX_TdH07kaqQdBgJ1RftQFY0CggsPBlGc,1132
|
174
|
+
google/adk/plugins/__init__.py,sha256=TsrFSVTij_NXaIKgaPXM126uzDoXRM9nmae6cL8SKoQ,640
|
175
|
+
google/adk/plugins/base_plugin.py,sha256=68kjerArZojMepDJyCnVKg0GMQVfLpnkRMJKlEUDUjU,11029
|
176
|
+
google/adk/plugins/plugin_manager.py,sha256=kBEMO0ymFX3m-6n_E1dKtTJ3CNClbxys4FVCQstRSYw,8984
|
168
177
|
google/adk/sessions/__init__.py,sha256=-gxRG5EY2NIlfEGHPu_6LQw8e5PfyCRAAjMuWCGbU3w,1264
|
169
178
|
google/adk/sessions/_session_util.py,sha256=vuQYN7kuDl36hpc9DkumCw09gCOrC9bsa8Em2ZdF1nI,1271
|
170
179
|
google/adk/sessions/base_session_service.py,sha256=xLccWQqcrqWEj8Q43aqfoyey1Zmz2x-Oz6CHqIOxU5w,3045
|
171
|
-
google/adk/sessions/database_session_service.py,sha256=
|
180
|
+
google/adk/sessions/database_session_service.py,sha256=LXDQEd9Z68SdVomzBw81g1TGOypVudTAy0GwRfjHJFk,20603
|
172
181
|
google/adk/sessions/in_memory_session_service.py,sha256=WWPQD1L4Zoi_tbM4f8qd_2ZusFYfmgXKptC33yUTnPk,9192
|
173
182
|
google/adk/sessions/session.py,sha256=fwJ3D4rUQ1N5cLMpFrE_BstEz6Ct637FlF52MfkxZCk,1861
|
174
183
|
google/adk/sessions/state.py,sha256=con9G5nfJpa95J5LKTAnZ3KMPkXdaTbrdwRdKg6d6B4,2299
|
175
|
-
google/adk/sessions/vertex_ai_session_service.py,sha256=
|
184
|
+
google/adk/sessions/vertex_ai_session_service.py,sha256=jkeiwLfAJZCkLiSmaWB9zmLlDFrv0C6xi7HhTHMgcSY,15997
|
176
185
|
google/adk/tools/__init__.py,sha256=_5JFmTAPBmXlOY8CRaYJlZubvwxoxhi2esXusovv5ME,1752
|
177
186
|
google/adk/tools/_automatic_function_calling_util.py,sha256=p5An_BklKDo1w5_DigZGgf0p023lIDKPaZPS_-iJN6k,11100
|
178
187
|
google/adk/tools/_forwarding_artifact_service.py,sha256=MHOfc8ntSuHLcA4jp218FP0k0qWAu3-6MSQCNWZ__S4,3022
|
179
188
|
google/adk/tools/_function_parameter_parse_util.py,sha256=ReSIsiXrrkpC1bFJgpdiyqVAgtZf2iDxEgZfAAdSo_U,11120
|
180
189
|
google/adk/tools/_gemini_schema_util.py,sha256=OkMDADWClc115Z6nTlpw9Ri0MPyLKoozK3WsiZbJgkk,5321
|
181
190
|
google/adk/tools/_memory_entry_utils.py,sha256=ecjuQskVAnqe9dH_VI7cz88UM9h1CvT1yTPKHiJyINA,967
|
182
|
-
google/adk/tools/agent_tool.py,sha256=
|
191
|
+
google/adk/tools/agent_tool.py,sha256=HMo3HvURX8etScCtPqik6YRO0j0kMkVqyI1YQJXePlk,4799
|
183
192
|
google/adk/tools/authenticated_function_tool.py,sha256=v3px_J3H2vh93Tq7BdcxGmLoyaje2SWG3Gnb6kvojfY,3806
|
184
193
|
google/adk/tools/base_authenticated_tool.py,sha256=-1O23OD_X3XU6tlQOBgUFIpLULy1Sncyq-z5ja_ZVAk,3551
|
185
|
-
google/adk/tools/base_tool.py,sha256=
|
186
|
-
google/adk/tools/base_toolset.py,sha256=
|
194
|
+
google/adk/tools/base_tool.py,sha256=JRGt2LICJLhF_lFDLsmpYUOgqbBnDQjYiDC4ij3ValE,4413
|
195
|
+
google/adk/tools/base_toolset.py,sha256=DdYTeURo47RvJKXNQ_h8PcmU4FCh1khouI0w5X5mbjY,3024
|
187
196
|
google/adk/tools/crewai_tool.py,sha256=CAOcizXvW_cQts5lFpS9IYcX71q_7eHoBxvFasdTBX8,2293
|
188
|
-
google/adk/tools/enterprise_search_tool.py,sha256=
|
197
|
+
google/adk/tools/enterprise_search_tool.py,sha256=ZUVJfksXRUGgoaS_n-kLdnqjIAe9ozjTp_EnsldnQ9Q,2269
|
189
198
|
google/adk/tools/example_tool.py,sha256=gaG68obDbI29omDRmtoGSDEe1BFTV4MXk1JkfcoztFM,1947
|
190
199
|
google/adk/tools/exit_loop_tool.py,sha256=qjeQsHiOt6qgjlgNSQ0HhxyVt-X-JTwaSGo5--j2SpA,784
|
191
200
|
google/adk/tools/function_tool.py,sha256=PVapbOEQP5zeSfmyR-2CtV8WdkZkT3RFw-SJ_M0lk18,5917
|
192
201
|
google/adk/tools/get_user_choice_tool.py,sha256=OL-iRBAd2HdDvMElFT8bubQWEtabNgPxz83GM0Cydms,994
|
193
|
-
google/adk/tools/google_search_tool.py,sha256=
|
194
|
-
google/adk/tools/langchain_tool.py,sha256=
|
202
|
+
google/adk/tools/google_search_tool.py,sha256=dfaw5ASjHIDQIIr9uqg_TzkJm_KcseLe-WG8hfuQW4w,2296
|
203
|
+
google/adk/tools/langchain_tool.py,sha256=q41Ck6_-a706_ScG0ePWYs5Bj8JpzZfyo4_as85aYIg,4789
|
195
204
|
google/adk/tools/load_artifacts_tool.py,sha256=UZ9aU0e2h2Z85JhRxG7fRdQpua_klUUF_1MEa9_Dy_A,3733
|
196
205
|
google/adk/tools/load_memory_tool.py,sha256=efi6Wo7gYdAAqiW9WoU-O-625t_gMoCpCiAGEWCtLtg,2611
|
197
206
|
google/adk/tools/load_web_page.py,sha256=PiIX6KzHqBPy0cdskhXtT3RWUOTGS4RTbzFQGHG80pU,1263
|
198
|
-
google/adk/tools/long_running_tool.py,sha256=
|
207
|
+
google/adk/tools/long_running_tool.py,sha256=OwGDJDoOxgdQdBLg5fyLrqQ9WCK66kJR1WluM-cSsLg,1966
|
199
208
|
google/adk/tools/preload_memory_tool.py,sha256=dnWXolahZOwO8oEFrMf6xCCV855r8tbybmkbwZWc0gk,2440
|
200
|
-
google/adk/tools/tool_context.py,sha256=
|
209
|
+
google/adk/tools/tool_context.py,sha256=6F1WNPTkmp0W7nEIw1YJRmMdSIIj8HTeBY3dViZooFE,3126
|
201
210
|
google/adk/tools/toolbox_toolset.py,sha256=3uywn-hZPopIqePXyNBhsBvbbz-jh5hPrrmfU1xgRiE,3634
|
202
211
|
google/adk/tools/transfer_to_agent_tool.py,sha256=nGsA08Kql7OMW9yZKYet3t20ERfmPyUBrOsRCgsSsr8,985
|
203
|
-
google/adk/tools/url_context_tool.py,sha256=
|
204
|
-
google/adk/tools/vertex_ai_search_tool.py,sha256=
|
212
|
+
google/adk/tools/url_context_tool.py,sha256=_bOljCD23Bwwn977FjeNuYnkCW4pBZmU0IiLMRTBuAI,2125
|
213
|
+
google/adk/tools/vertex_ai_search_tool.py,sha256=yr24eAhnBEizDphJW3WLAhu-gfsoUrR9MxJaygkcUig,4125
|
205
214
|
google/adk/tools/apihub_tool/__init__.py,sha256=89tWC4Mm-MYoJ9Al_b8nbqFLeTgPO0-j411SkLuuzaQ,653
|
206
|
-
google/adk/tools/apihub_tool/apihub_toolset.py,sha256=
|
215
|
+
google/adk/tools/apihub_tool/apihub_toolset.py,sha256=ja0y7OzRYj_4kwcLVk5EHuACXRzEtWvHqTQ3MIXgBXI,7053
|
207
216
|
google/adk/tools/apihub_tool/clients/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
208
217
|
google/adk/tools/apihub_tool/clients/apihub_client.py,sha256=AU0LOs70O48_rdr5MdiF1fgEsVXX8na4Af3TDOWzWYo,11376
|
209
218
|
google/adk/tools/apihub_tool/clients/secret_client.py,sha256=U4YtXKCATGu9GWGPRGFVLXaA9rvSoHL8RYin8ZycCik,4127
|
210
219
|
google/adk/tools/application_integration_tool/__init__.py,sha256=-MTn3o2VedLtrY2mw6GW0qBtYd8BS12luK-E-Nwhg9g,799
|
211
|
-
google/adk/tools/application_integration_tool/application_integration_toolset.py,sha256=
|
212
|
-
google/adk/tools/application_integration_tool/integration_connector_tool.py,sha256=
|
220
|
+
google/adk/tools/application_integration_tool/application_integration_toolset.py,sha256=VO3ja5P6g_Ju9m59kWO2BPogfnxN8d5V5RqEwew09L4,10446
|
221
|
+
google/adk/tools/application_integration_tool/integration_connector_tool.py,sha256=aFMiLimrar_a4_NT9qgeWZkl7OpPkK8p78nYwhoeBQM,7559
|
213
222
|
google/adk/tools/application_integration_tool/clients/connections_client.py,sha256=zspLmrx2DvOg2r5B2DWxeK3fKdQovIu8t3z5Xip7AGo,31428
|
214
223
|
google/adk/tools/application_integration_tool/clients/integration_client.py,sha256=hLM8n97hsmvgYBtmF_KMYwr_mnlhfPvsDXzE2cI5SqE,10654
|
215
|
-
google/adk/tools/bigquery/__init__.py,sha256=
|
224
|
+
google/adk/tools/bigquery/__init__.py,sha256=w-a5RB1egK60tYU5_jqgEyHOPt_z4-_8im4soOLPATk,1452
|
216
225
|
google/adk/tools/bigquery/bigquery_credentials.py,sha256=cs610IowXAhpwovRpMjspPQ6Bb9TB23IBqdUorHNQzI,8690
|
217
226
|
google/adk/tools/bigquery/bigquery_tool.py,sha256=Hvw5ijtX9FGJfUxvBCTL51JxAS4-G5wFtewMUcSACxk,4208
|
218
227
|
google/adk/tools/bigquery/bigquery_toolset.py,sha256=4eIj_bbUeC4bhhNN9RA8i5661Xi3qM9pqfYoN4XBQME,2831
|
@@ -221,15 +230,15 @@ google/adk/tools/bigquery/config.py,sha256=D8URzRuoLde_ciyoy1i0yhxDVyMNFk18bq0Vx
|
|
221
230
|
google/adk/tools/bigquery/metadata_tool.py,sha256=BZ5VPXERZgVJDp1VqT6vSmFkDYPbo0bXBZsE5RgL3XY,8263
|
222
231
|
google/adk/tools/bigquery/query_tool.py,sha256=EtYub3q8Hau7xfDI5DC6ny8acGPr3uoGZIOJio7gnqc,16638
|
223
232
|
google/adk/tools/google_api_tool/__init__.py,sha256=a_Bco5SyTQ89yb1t6Bs6NQrTsJgV22mn1quRNygVZXw,1385
|
224
|
-
google/adk/tools/google_api_tool/google_api_tool.py,sha256=
|
225
|
-
google/adk/tools/google_api_tool/google_api_toolset.py,sha256=
|
226
|
-
google/adk/tools/google_api_tool/google_api_toolsets.py,sha256=
|
233
|
+
google/adk/tools/google_api_tool/google_api_tool.py,sha256=wpJ26xVHA-pPBNP7kyjRVhHs4Fo1kgsIjweGy-ZY06g,2618
|
234
|
+
google/adk/tools/google_api_tool/google_api_toolset.py,sha256=MlBXmuDVm5sVSMFc1ShDFJhW6oTLZ7LzMs2Sk781qLE,3990
|
235
|
+
google/adk/tools/google_api_tool/google_api_toolsets.py,sha256=sC6nfNOnINxyiAJH6XE0tAoy9zX-nvmWB3UpjSWRvb8,4355
|
227
236
|
google/adk/tools/google_api_tool/googleapi_to_openapi_converter.py,sha256=mo1ew3JGjW3VDl5Bhr7tHRMZr0Kapi8eUVk3zEQE-Hg,16377
|
228
237
|
google/adk/tools/mcp_tool/__init__.py,sha256=UIXmz81_7s-kpZNSTOhpWXtQeMxXpjTwMRoDPDbCTkQ,1515
|
229
238
|
google/adk/tools/mcp_tool/conversion_utils.py,sha256=PfPSBAPzAgBsEWk2goKOFHz4fM-9ralW-nMkCbs0b38,5339
|
230
239
|
google/adk/tools/mcp_tool/mcp_session_manager.py,sha256=73QVLCFrhZ3fSN57bIYK6uPdhcQ2rQeWUSPjvCG-neA,13335
|
231
240
|
google/adk/tools/mcp_tool/mcp_tool.py,sha256=OjUqjTn_sQtuzIEXgUKy2oaOCk_7pLdG-8Tzw55D_QU,7268
|
232
|
-
google/adk/tools/mcp_tool/mcp_toolset.py,sha256=
|
241
|
+
google/adk/tools/mcp_tool/mcp_toolset.py,sha256=U8ZQKxHbTaTTJajPvu4ZQJiRiPZ1eSEu4sU_sR5z9hY,6359
|
233
242
|
google/adk/tools/openapi_tool/__init__.py,sha256=UMsewNCQjd-r1GBX1OMuUJTzJ0AlQuegIc98g04-0oU,724
|
234
243
|
google/adk/tools/openapi_tool/auth/__init__.py,sha256=NVRXscqN4V0CSCvIp8J_ee8Xyw4m-OGoZn7SmrtOsQk,637
|
235
244
|
google/adk/tools/openapi_tool/auth/auth_helpers.py,sha256=73GGGxvLZWH_YW7BEObAY-rVz3r401dm98kl5oq-nwM,15901
|
@@ -242,21 +251,22 @@ google/adk/tools/openapi_tool/common/__init__.py,sha256=XqwyKnQGngeU1EzoBMkL5c9B
|
|
242
251
|
google/adk/tools/openapi_tool/common/common.py,sha256=AqNZ2EXwgyb4fs_63fjZIZxx_QWAkm_BdRDu7cQ_0yM,7915
|
243
252
|
google/adk/tools/openapi_tool/openapi_spec_parser/__init__.py,sha256=ttF-qOUxe9FQJOkY7kRPvpgolYcEd2Oo9o-VO9QI8II,1229
|
244
253
|
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_spec_parser.py,sha256=nMiJarj9m4NaMxnF4FIXFJfjbV8-ZMrwQK8dulTOLJk,7926
|
245
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py,sha256=
|
254
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py,sha256=lkJ62lJa7bXz9YWd4hv041SvGHbswvUgywWZTAWga3Q,5548
|
246
255
|
google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py,sha256=PhgkKRtSQi-gZa2RBeEzCX0A0Aekk2kLIo_cuf9aAQ0,9078
|
247
|
-
google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py,sha256=
|
256
|
+
google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py,sha256=z7spudriPVrI5fqZjheuNzl6rjgUDAlvkxJo6R4xs2I,14626
|
248
257
|
google/adk/tools/openapi_tool/openapi_spec_parser/tool_auth_handler.py,sha256=9bqnlvmcr6i8Dab73ntzbynkFFWCYMhk7R-DS-jkOz4,10013
|
249
258
|
google/adk/tools/retrieval/__init__.py,sha256=0euJjx0ReH8JmUI5-JU8kWRswqLxobRCDjx5zvX4rHY,1188
|
250
259
|
google/adk/tools/retrieval/base_retrieval_tool.py,sha256=4aar8Kg-6rQG7Ht1n18D5fvJnuffodFdSjeCp-GzA7w,1174
|
251
260
|
google/adk/tools/retrieval/files_retrieval.py,sha256=UvxXjs3t8O2VO7o4wagHah2ydHT6sl0bLMsKxDVTOHU,1271
|
252
261
|
google/adk/tools/retrieval/llama_index_retrieval.py,sha256=r9HUQXqygxizX0OXz7pJAWxzRRwmofAtFa3UvRR2di0,1304
|
253
|
-
google/adk/tools/retrieval/vertex_ai_rag_retrieval.py,sha256=
|
262
|
+
google/adk/tools/retrieval/vertex_ai_rag_retrieval.py,sha256=v-9wngwKRsza-6kxBYrU8JgdkGXSCaJfF0CgfFuzuUI,3374
|
254
263
|
google/adk/utils/__init__.py,sha256=Q9FlRO2IfSE9yEaiAYzWkOMBJPCaNYqh4ihcp0t0BQs,574
|
255
264
|
google/adk/utils/feature_decorator.py,sha256=DzGHMTStf4-S9BNiA4EqcCJbrdKijhgeSUSPdzM44H8,5048
|
256
265
|
google/adk/utils/instructions_utils.py,sha256=al9Z-P8qOrbxNju8cqkeH7qRg0oQH7hfmvTG-0oSAQk,3996
|
266
|
+
google/adk/utils/model_name_utils.py,sha256=ySw70vuXghI6P4B890OuFktqVDFKL0g5WZG0Q-mOqsI,2658
|
257
267
|
google/adk/utils/variant_utils.py,sha256=u9IuOn2aXG3ibDYshgLoogBXqH9Gd84ixArQoeLQiE8,1463
|
258
|
-
google_adk-1.
|
259
|
-
google_adk-1.
|
260
|
-
google_adk-1.
|
261
|
-
google_adk-1.
|
262
|
-
google_adk-1.
|
268
|
+
google_adk-1.7.0.dist-info/entry_points.txt,sha256=zL9CU-6V2yQ2oc5lrcyj55ROHrpiIePsvQJ4H6SL-zI,43
|
269
|
+
google_adk-1.7.0.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
270
|
+
google_adk-1.7.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
271
|
+
google_adk-1.7.0.dist-info/METADATA,sha256=ZmuXuoJkiRBZobhMtzgOdmtwYPqIlijZXssWeh63z_c,10087
|
272
|
+
google_adk-1.7.0.dist-info/RECORD,,
|