add8ad3235
Change-Id: I903a7aa485b2e4051487b68ff1484f6729f70720
ADK Agent Empty Sample
Overview
This sample demonstrates how to create a minimal, empty agent using the ADK framework.
It defines a simple Agent that doesn't have any specific tools or complex instructions attached to it. This is useful as a basic template or starting point for defining more complex agentic behaviors over time, ensuring it follows the core directory requirements of adk.
Graph
Agent (name="empty_agent")
How To
-
Define a basic agent using the
Agentclass, specifying a unique name:from google.adk.agents import Agent root_agent = Agent( name="empty_agent", )