You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-03-30 10:57:20 -07:00
2367901ec5
Co-authored-by: George Weale <gweale@google.com> PiperOrigin-RevId: 858763407
77 lines
3.0 KiB
Python
77 lines
3.0 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.
|
|
|
|
import os
|
|
|
|
from google.adk.agents.llm_agent import LlmAgent
|
|
from google.adk.auth.auth_credential import AuthCredentialTypes
|
|
from google.adk.tools.bigtable.bigtable_credentials import BigtableCredentialsConfig
|
|
from google.adk.tools.bigtable.bigtable_toolset import BigtableToolset
|
|
from google.adk.tools.bigtable.settings import BigtableToolSettings
|
|
import google.auth
|
|
|
|
# Define an appropriate credential type
|
|
CREDENTIALS_TYPE = AuthCredentialTypes.OAUTH2
|
|
|
|
|
|
# Define Bigtable tool config with read capability set to allowed.
|
|
tool_settings = BigtableToolSettings()
|
|
|
|
if CREDENTIALS_TYPE == AuthCredentialTypes.OAUTH2:
|
|
# Initialize the tools to do interactive OAuth
|
|
# The environment variables OAUTH_CLIENT_ID and OAUTH_CLIENT_SECRET
|
|
# must be set
|
|
credentials_config = BigtableCredentialsConfig(
|
|
client_id=os.getenv("OAUTH_CLIENT_ID"),
|
|
client_secret=os.getenv("OAUTH_CLIENT_SECRET"),
|
|
scopes=[
|
|
"https://www.googleapis.com/auth/bigtable.admin",
|
|
"https://www.googleapis.com/auth/bigtable.data",
|
|
],
|
|
)
|
|
elif CREDENTIALS_TYPE == AuthCredentialTypes.SERVICE_ACCOUNT:
|
|
# Initialize the tools to use the credentials in the service account key.
|
|
# If this flow is enabled, make sure to replace the file path with your own
|
|
# service account key file
|
|
# https://cloud.google.com/iam/docs/service-account-creds#user-managed-keys
|
|
creds, _ = google.auth.load_credentials_from_file("service_account_key.json")
|
|
credentials_config = BigtableCredentialsConfig(credentials=creds)
|
|
else:
|
|
# Initialize the tools to use the application default credentials.
|
|
# https://cloud.google.com/docs/authentication/provide-credentials-adc
|
|
application_default_credentials, _ = google.auth.default()
|
|
credentials_config = BigtableCredentialsConfig(
|
|
credentials=application_default_credentials
|
|
)
|
|
|
|
bigtable_toolset = BigtableToolset(
|
|
credentials_config=credentials_config, bigtable_tool_settings=tool_settings
|
|
)
|
|
|
|
# The variable name `root_agent` determines what your root agent is for the
|
|
# debug CLI
|
|
root_agent = LlmAgent(
|
|
model="gemini-2.5-flash",
|
|
name="bigtable_agent",
|
|
description=(
|
|
"Agent to answer questions about Bigtable database tables and"
|
|
" execute SQL queries."
|
|
), # TODO(b/360128447): Update description
|
|
instruction="""\
|
|
You are a data agent with access to several Bigtable tools.
|
|
Make use of those tools to answer the user's questions.
|
|
""",
|
|
tools=[bigtable_toolset],
|
|
)
|