ec2b666284
Continuous Integration / Pre-commit Linter (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.10) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.11) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.12) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.10) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.11) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.12) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.14) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.10) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.11) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.12) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.13) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.14) (push) Waiting to run
Copybara PR Handler / close-imported-pr (push) Waiting to run
78 lines
2.5 KiB
Python
78 lines
2.5 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 asyncio
|
|
import logging
|
|
import time
|
|
|
|
from adk_pr_triaging_agent import agent
|
|
from adk_pr_triaging_agent.settings import OWNER
|
|
from adk_pr_triaging_agent.settings import PR_COUNT_TO_PROCESS
|
|
from adk_pr_triaging_agent.settings import PULL_REQUEST_NUMBER
|
|
from adk_pr_triaging_agent.settings import REPO
|
|
from adk_pr_triaging_agent.utils import call_agent_async
|
|
from adk_pr_triaging_agent.utils import parse_number_string
|
|
from google.adk.cli.utils import logs
|
|
from google.adk.runners import InMemoryRunner
|
|
|
|
APP_NAME = "adk_pr_triaging_app"
|
|
USER_ID = "adk_pr_triaging_user"
|
|
|
|
logs.setup_adk_logger(level=logging.DEBUG)
|
|
|
|
|
|
async def main():
|
|
runner = InMemoryRunner(
|
|
agent=agent.root_agent,
|
|
app_name=APP_NAME,
|
|
)
|
|
session = await runner.session_service.create_session(
|
|
app_name=APP_NAME, user_id=USER_ID
|
|
)
|
|
|
|
pr_number = parse_number_string(PULL_REQUEST_NUMBER)
|
|
if pr_number:
|
|
prompt = f"Please triage pull request #{pr_number}!"
|
|
else:
|
|
pr_count = parse_number_string(PR_COUNT_TO_PROCESS, default_value=10)
|
|
print(
|
|
"No pull request number received. Operating in batch mode (limit:"
|
|
f" {pr_count})."
|
|
)
|
|
prompt = (
|
|
f"Please use 'list_untriaged_pull_requests' to find {pr_count} pull"
|
|
" requests that need triaging, then triage each one according to your"
|
|
" instructions."
|
|
)
|
|
|
|
response = await call_agent_async(runner, USER_ID, session.id, prompt)
|
|
print(f"<<<< Agent Final Output: {response}\n")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
start_time = time.time()
|
|
print(
|
|
f"Start triaging {OWNER}/{REPO} pull request #{PULL_REQUEST_NUMBER} at"
|
|
f" {time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime(start_time))}"
|
|
)
|
|
print("-" * 80)
|
|
asyncio.run(main())
|
|
print("-" * 80)
|
|
end_time = time.time()
|
|
print(
|
|
"Triaging finished at"
|
|
f" {time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime(end_time))}",
|
|
)
|
|
print("Total script execution time:", f"{end_time - start_time:.2f} seconds")
|