You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-03-30 10:57:20 -07:00
43f302ce1a
Also expand agent folder name to full spelling, e.g. ma --> multi_agent PiperOrigin-RevId: 795926902
63 lines
1.7 KiB
Python
63 lines
1.7 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 random
|
|
|
|
from google.adk.tools.tool_context import ToolContext
|
|
|
|
|
|
def roll_die(sides: int, tool_context: ToolContext) -> int:
|
|
"""Roll a die and return the rolled result.
|
|
|
|
Args:
|
|
sides: The integer number of sides the die has.
|
|
|
|
Returns:
|
|
An integer of the result of rolling the die.
|
|
"""
|
|
result = random.randint(1, sides)
|
|
if not 'rolls' in tool_context.state:
|
|
tool_context.state['rolls'] = []
|
|
|
|
tool_context.state['rolls'] = tool_context.state['rolls'] + [result]
|
|
return result
|
|
|
|
|
|
async def check_prime(nums: list[int]) -> str:
|
|
"""Check if a given list of numbers are prime.
|
|
|
|
Args:
|
|
nums: The list of numbers to check.
|
|
|
|
Returns:
|
|
A str indicating which number is 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."
|
|
)
|