chore: import upstream snapshot with attribution
Continuous Integration / Pre-commit Linter (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.10) (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.11) (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.12) (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.13) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.10) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.11) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.12) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.13) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.14) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.10) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.11) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.12) (push) Has been cancelled
Copybara PR Handler / close-imported-pr (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.13) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.14) (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:25:13 +08:00
commit ec2b666284
2231 changed files with 491535 additions and 0 deletions
@@ -0,0 +1,15 @@
# 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 . import agent
+160
View File
@@ -0,0 +1,160 @@
# 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
import random
from google.adk.agents.llm_agent import Agent
from google.adk.examples.example import Example
from google.adk.tools.example_tool import ExampleTool
from google.genai import types
# --- Roll Die Sub-Agent ---
def roll_die(sides: int) -> int:
"""Roll a die and return the rolled result."""
if "PYTEST_CURRENT_TEST" in os.environ:
return 2
return random.randint(1, sides)
roll_agent = Agent(
name="roll_agent",
description="Handles rolling dice of different sizes.",
instruction="""
You are responsible for rolling dice based on the user's request.
When asked to roll a die, you must call the roll_die tool with the number of sides as an integer.
""",
tools=[roll_die],
generate_content_config=types.GenerateContentConfig(
safety_settings=[
types.SafetySetting( # avoid false alarm about rolling dice.
category=types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT,
threshold=types.HarmBlockThreshold.OFF,
),
]
),
)
# --- Prime Check Sub-Agent ---
def check_prime(nums: list[int]) -> str:
"""Check if a given list of numbers are prime."""
primes = set()
for number in nums:
number = int(number)
if number <= 1:
continue
is_prime = True
for i in range(2, int(number**0.5) + 1):
if number % i == 0:
is_prime = False
break
if is_prime:
primes.add(number)
return (
"No prime numbers found."
if not primes
else f"{', '.join(str(num) for num in primes)} are prime numbers."
)
example_tool = ExampleTool(
examples=[
Example(
input=types.UserContent(
parts=[types.Part(text="Roll a 6-sided die.")]
),
output=[
types.ModelContent(
parts=[types.Part(text="I rolled a 4 for you.")]
)
],
),
Example(
input=types.UserContent(
parts=[types.Part(text="Is 7 a prime number?")]
),
output=[
types.ModelContent(
parts=[types.Part(text="Yes, 7 is a prime number.")]
)
],
),
Example(
input=types.UserContent(
parts=[
types.Part(
text="Roll a 10-sided die and check if it's prime."
)
]
),
output=[
types.ModelContent(
parts=[types.Part(text="I rolled an 8 for you.")]
),
types.ModelContent(
parts=[types.Part(text="8 is not a prime number.")]
),
],
),
]
)
prime_agent = Agent(
name="prime_agent",
description="Handles checking if numbers are prime.",
instruction="""
You are responsible for checking whether numbers are prime.
When asked to check primes, you must call the check_prime tool with a list of integers.
Never attempt to determine prime numbers manually.
Return the prime number results to the root agent.
""",
tools=[check_prime],
generate_content_config=types.GenerateContentConfig(
safety_settings=[
types.SafetySetting( # avoid false alarm about rolling dice.
category=types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT,
threshold=types.HarmBlockThreshold.OFF,
),
]
),
)
root_agent = Agent(
name="root_agent",
instruction="""
You are a helpful assistant that can roll dice and check if numbers are prime.
You delegate rolling dice tasks to the roll_agent and prime checking tasks to the prime_agent.
Follow these steps:
1. If the user asks to roll a die, delegate to the roll_agent.
2. If the user asks to check primes, delegate to the prime_agent.
3. If the user asks to roll a die and then check if the result is prime, call roll_agent first, then pass the result to prime_agent.
Always clarify the results before proceeding.
""",
global_instruction=(
"You are DicePrimeBot, ready to roll dice and check prime numbers."
),
sub_agents=[roll_agent, prime_agent],
tools=[example_tool],
generate_content_config=types.GenerateContentConfig(
safety_settings=[
types.SafetySetting( # avoid false alarm about rolling dice.
category=types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT,
threshold=types.HarmBlockThreshold.OFF,
),
]
),
)
@@ -0,0 +1,296 @@
{
"appName": "hello_world_ma",
"events": [
{
"author": "user",
"content": {
"parts": [
{
"text": "hi"
}
],
"role": "user"
},
"id": "e-1",
"invocationId": "i-1",
"nodeInfo": {
"path": ""
}
},
{
"author": "root_agent",
"content": {
"parts": [
{
"text": "Hello! How can I help you today?"
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-2",
"invocationId": "i-1",
"nodeInfo": {
"path": "root_agent@1"
}
},
{
"author": "user",
"content": {
"parts": [
{
"text": "roll a dice of 10 dies"
}
],
"role": "user"
},
"id": "e-3",
"invocationId": "i-2",
"nodeInfo": {
"path": ""
}
},
{
"author": "root_agent",
"content": {
"parts": [
{
"functionCall": {
"args": {
"agent_name": "roll_agent"
},
"id": "fc-1",
"name": "transfer_to_agent"
}
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-4",
"invocationId": "i-2",
"longRunningToolIds": [],
"nodeInfo": {
"path": "root_agent@1"
}
},
{
"actions": {
"transferToAgent": "roll_agent"
},
"author": "root_agent",
"content": {
"parts": [
{
"functionResponse": {
"id": "fc-1",
"name": "transfer_to_agent",
"response": {
"result": null
}
}
}
],
"role": "user"
},
"id": "e-5",
"invocationId": "i-2",
"nodeInfo": {
"path": "root_agent@1"
}
},
{
"author": "roll_agent",
"content": {
"parts": [
{
"functionCall": {
"args": {
"sides": 10
},
"id": "fc-2",
"name": "roll_die"
}
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-6",
"invocationId": "i-2",
"longRunningToolIds": [],
"nodeInfo": {
"path": "root_agent@1/roll_agent@1"
}
},
{
"author": "roll_agent",
"content": {
"parts": [
{
"functionResponse": {
"id": "fc-2",
"name": "roll_die",
"response": {
"result": 2
}
}
}
],
"role": "user"
},
"id": "e-7",
"invocationId": "i-2",
"nodeInfo": {
"path": "root_agent@1/roll_agent@1"
}
},
{
"author": "roll_agent",
"content": {
"parts": [
{
"text": "You rolled a 2.\n"
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-8",
"invocationId": "i-2",
"nodeInfo": {
"path": "root_agent@1/roll_agent@1"
}
},
{
"author": "user",
"content": {
"parts": [
{
"text": "check it"
}
],
"role": "user"
},
"id": "e-9",
"invocationId": "i-3",
"nodeInfo": {
"path": ""
}
},
{
"author": "roll_agent",
"content": {
"parts": [
{
"functionCall": {
"args": {
"agent_name": "prime_agent"
},
"id": "fc-3",
"name": "transfer_to_agent"
}
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-10",
"invocationId": "i-3",
"longRunningToolIds": [],
"nodeInfo": {
"path": "root_agent@1/roll_agent@1"
}
},
{
"actions": {
"transferToAgent": "prime_agent"
},
"author": "roll_agent",
"content": {
"parts": [
{
"functionResponse": {
"id": "fc-3",
"name": "transfer_to_agent",
"response": {
"result": null
}
}
}
],
"role": "user"
},
"id": "e-11",
"invocationId": "i-3",
"nodeInfo": {
"path": "root_agent@1/roll_agent@1"
}
},
{
"author": "prime_agent",
"content": {
"parts": [
{
"functionCall": {
"args": {
"nums": [
2
]
},
"id": "fc-4",
"name": "check_prime"
}
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-12",
"invocationId": "i-3",
"longRunningToolIds": [],
"nodeInfo": {
"path": "root_agent@1/prime_agent@1"
}
},
{
"author": "prime_agent",
"content": {
"parts": [
{
"functionResponse": {
"id": "fc-4",
"name": "check_prime",
"response": {
"result": "2 are prime numbers."
}
}
}
],
"role": "user"
},
"id": "e-13",
"invocationId": "i-3",
"nodeInfo": {
"path": "root_agent@1/prime_agent@1"
}
},
{
"author": "prime_agent",
"content": {
"parts": [
{
"text": "2 are prime numbers."
}
],
"role": "model"
},
"finishReason": "STOP",
"id": "e-14",
"invocationId": "i-3",
"nodeInfo": {
"path": "root_agent@1/prime_agent@1"
}
}
]
}