mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
This agent will post a comment to answer questions or provide more information according to the knowledge base. PiperOrigin-RevId: 781651937
82 lines
2.5 KiB
Python
82 lines
2.5 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.
|
|
|
|
import sys
|
|
from typing import Any
|
|
|
|
from adk_answering_agent.settings import GITHUB_GRAPHQL_URL
|
|
from adk_answering_agent.settings import GITHUB_TOKEN
|
|
from google.adk.agents.run_config import RunConfig
|
|
from google.adk.runners import Runner
|
|
from google.genai import types
|
|
import requests
|
|
|
|
headers = {
|
|
"Authorization": f"token {GITHUB_TOKEN}",
|
|
"Accept": "application/vnd.github.v3+json",
|
|
}
|
|
|
|
|
|
def error_response(error_message: str) -> dict[str, Any]:
|
|
return {"status": "error", "error_message": error_message}
|
|
|
|
|
|
def run_graphql_query(query: str, variables: dict[str, Any]) -> dict[str, Any]:
|
|
"""Executes a GraphQL query."""
|
|
payload = {"query": query, "variables": variables}
|
|
response = requests.post(
|
|
GITHUB_GRAPHQL_URL, headers=headers, json=payload, timeout=60
|
|
)
|
|
response.raise_for_status()
|
|
return response.json()
|
|
|
|
|
|
def parse_number_string(number_str: str | None, default_value: int = 0) -> int:
|
|
"""Parse a number from the given string."""
|
|
if not number_str:
|
|
return default_value
|
|
|
|
try:
|
|
return int(number_str)
|
|
except ValueError:
|
|
print(
|
|
f"Warning: Invalid number string: {number_str}. Defaulting to"
|
|
f" {default_value}.",
|
|
file=sys.stderr,
|
|
)
|
|
return default_value
|
|
|
|
|
|
async def call_agent_async(
|
|
runner: Runner, user_id: str, session_id: str, prompt: str
|
|
) -> str:
|
|
"""Call the agent asynchronously with the user's prompt."""
|
|
content = types.Content(
|
|
role="user", parts=[types.Part.from_text(text=prompt)]
|
|
)
|
|
|
|
final_response_text = ""
|
|
async for event in runner.run_async(
|
|
user_id=user_id,
|
|
session_id=session_id,
|
|
new_message=content,
|
|
run_config=RunConfig(save_input_blobs_as_artifacts=False),
|
|
):
|
|
if event.content and event.content.parts:
|
|
if text := "".join(part.text or "" for part in event.content.parts):
|
|
if event.author != "user":
|
|
final_response_text += text
|
|
|
|
return final_response_text
|