You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
43f302ce1a
Also expand agent folder name to full spelling, e.g. ma --> multi_agent PiperOrigin-RevId: 795926902
13 lines
595 B
YAML
13 lines
595 B
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/google/adk-python/refs/heads/main/src/google/adk/agents/config_schemas/AgentConfig.json
|
|
agent_class: LlmAgent
|
|
model: gemini-2.5-flash
|
|
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:
|
|
- name: multi_agent_llm_config.check_prime
|