Files
adk-python/src/google/adk/tools/url_context_tool.py
T
2026-02-19 12:02:27 -08:00

66 lines
2.2 KiB
Python

# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
from typing import TYPE_CHECKING
from google.genai import types
from typing_extensions import override
from ..utils.model_name_utils import is_gemini_1_model
from ..utils.model_name_utils import is_gemini_2_or_above
from ..utils.model_name_utils import is_gemini_model_id_check_disabled
from .base_tool import BaseTool
from .tool_context import ToolContext
if TYPE_CHECKING:
from ..models import LlmRequest
class UrlContextTool(BaseTool):
"""A built-in tool that is automatically invoked by Gemini 2 models to retrieve content from the URLs and use that content to inform and shape its response.
This tool operates internally within the model and does not require or perform
local code execution.
"""
def __init__(self):
# Name and description are not used because this is a model built-in tool.
super().__init__(name='url_context', description='url_context')
@override
async def process_llm_request(
self,
*,
tool_context: ToolContext,
llm_request: LlmRequest,
) -> None:
model_check_disabled = is_gemini_model_id_check_disabled()
llm_request.config = llm_request.config or types.GenerateContentConfig()
llm_request.config.tools = llm_request.config.tools or []
if is_gemini_1_model(llm_request.model):
raise ValueError('Url context tool cannot be used in Gemini 1.x.')
elif is_gemini_2_or_above(llm_request.model) or model_check_disabled:
llm_request.config.tools.append(
types.Tool(url_context=types.UrlContext())
)
else:
raise ValueError(
f'Url context tool is not supported for model {llm_request.model}'
)
url_context = UrlContextTool()