Slide 12
Slide 12 text
Agent Development Kit(ADK)
AIエージェントを実装するためのGoogle製OSS
自律性という観点では
● 基本的にどのツールを呼び出すかは生成AIに委ねる方針
● 実行フロー制御(Workflow Agent)、カスタムの処理(Custom Agent)もある
12
root_agent = Agent(
name="weather_time_agent",
model="gemini-2.0-flash",
description=(
"Agent to answer questions about the time and weather in a city."
),
instruction=(
"You are a helpful agent who can answer user questions about the time and weather in a city."
),
tools=[get_weather, get_current_time],
)
https://google.github.io/adk-docs/get-started/quickstart/