Welcome to the Sample Agents repository! This collection provides ready-to-use agents built on top of the Agent Development Kit, designed to accelerate your development process. These agents cover a range of common use cases and complexities, from simple conversational bots to complex multi-agent workflows.
A Sample Agent is a functional starting point for a foundational agent designed for common application scenarios. It comes pre-packaged with core logic (like different agents using different tools, evaluation, human in the loop) relevant to a specific use case or industry. While functional, a Sample Agent typically requires customization (e.g., adjusting specific responses or integrating with external systems) to be fully operational. Each agent includes instructions on how it can be customized.
Follow these steps to set up and run the sample agents:
-
Prerequisites:
- Install the ADK Samples: Ensure you have the Agent Development Kit installed and configured. Follow the ADK Installation Guide.
- Set Up Environment Variables: Each agent example relies on a
.env
file for configuration (like API keys, Google Cloud project IDs, and location). This keeps secrets out of the code.- You will need to create a
.env
file in each agent's directory you wish to run (usually by copying the provided.env.example
). - Setting up these variables, especially obtaining Google Cloud credentials, requires careful steps. Refer to the Environment Setup section in the ADK Installation Guide for detailed instructions.
- You will need to create a
- Google Cloud Project (Recommended): While some agents might run locally with just an API key, most leverage Google Cloud services like Vertex AI and BigQuery. A configured Google Cloud project is highly recommended. See the ADK Quickstart for setup details.
-
Clone this repository: You can install the ADK samples via cloning it from the public repository by
git clone https://github.com/google/adk-samples.git cd adk-samples
-
Explore the Agents:
- Navigate to the
agents/
directory. - The
agents/README.md
provides an overview and categorization of the available agents. - Browse the subdirectories. Each contains a specific sample agent with its own
README.md
.
-
Run an Agent:
- Choose an agent from the
agents/
directory. - Navigate into that agent's specific directory (e.g.,
cd agents/llm-auditor
). - Follow the instructions in that agent's
README.md
file for specific setup (like installing dependencies viapoetry install
) and running the agent.
Browse the folders in this repository. Each agent and tool have its own
README.md
file with detailed instructions. - Choose an agent from the
Notes:
- These agents have been built and tested using Google models on Vertex AI. You can test these samples with other models as well. Please refer to ADK Tutorials to use other models for these samples.
.
├── agents # Contains individual agent samples
│ ├── agent1 # Specific agent directory
│ │ └── README.md # Agent-specific instructions
│ ├── agent2
│ │ └── README.md
│ ├── ...
│ └── README.md # Overview and categorization of agents
└── README.md # This file (Repository overview)
If you have any questions or if you found any problems with this repository, please report through GitHub issues.
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, please see our Contributing Guidelines to get started.
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.
This project is intended for demonstration purposes only. It is not intended for use in a production environment.