mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
Right now the tolls are always running against multi-region US by default. With this change the agent builder can scope the tools to data and compute in a particular BigQuery location. PiperOrigin-RevId: 806473857
59 lines
1.6 KiB
Python
59 lines
1.6 KiB
Python
# Copyright 2025 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 Optional
|
|
|
|
import google.api_core.client_info
|
|
from google.auth.credentials import Credentials
|
|
from google.cloud import bigquery
|
|
|
|
from ... import version
|
|
|
|
USER_AGENT = f"adk-bigquery-tool google-adk/{version.__version__}"
|
|
|
|
|
|
def get_bigquery_client(
|
|
*,
|
|
project: Optional[str],
|
|
credentials: Credentials,
|
|
location: Optional[str] = None,
|
|
user_agent: Optional[str] = None,
|
|
) -> bigquery.Client:
|
|
"""Get a BigQuery client.
|
|
|
|
Args:
|
|
project: The GCP project ID.
|
|
credentials: The credentials to use for the request.
|
|
location: The location of the BigQuery client.
|
|
user_agent: The user agent to use for the request.
|
|
|
|
Returns:
|
|
A BigQuery client.
|
|
"""
|
|
|
|
user_agent = f"{USER_AGENT} {user_agent}" if user_agent else USER_AGENT
|
|
|
|
client_info = google.api_core.client_info.ClientInfo(user_agent=user_agent)
|
|
|
|
bigquery_client = bigquery.Client(
|
|
project=project,
|
|
credentials=credentials,
|
|
location=location,
|
|
client_info=client_info,
|
|
)
|
|
|
|
return bigquery_client
|