Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Agent Development Kit (ADK) TypeScript Samples

License

Agent Development Kit Logo

This collection provides ready-to-use sample agents built on top of Agent Development Kit TypeScript. These agents cover a range of common use cases and complexities, from simple conversational bots to complex multi-agent workflows.

🚀 Getting Started with TypeScript Samples

Follow these steps to set up and run the sample agents:

  1. Prerequisites:

    • Install TypeScript ADK: Ensure you have TypeScript Agent Development Kit installed and configured. Follow the Go instructions in 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.
    • 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.
  2. Clone this repository:

    To start working with the ADK Go samples, first clone the public adk-samples repository:

    git clone https://github.com/google/adk-samples.git
    cd adk-samples/typescript
  3. 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.
  4. Run an Agent:

    • Choose an agent from the agents/ directory.
    • Navigate into that agent's specific directory (e.g., cd agents/customer_service).
    • Follow the instructions in that agent's README.md file for specific setup and running the agent.
    • Browse the folders in this repository. Each agent and tool have its own README.md file with detailed instructions.

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.

🧱 Repository Structure

.
├── typescript                  # Contains all the TypeScript sample code
│   ├── agents                  # Contains individual agent samples
│   │   ├── agent1              # Specific agent directory
│   │   │   └── README.md       # Agent-specific instructions
│   │   ├── agent2
│   │   │   └── README.md
│   │   ├── ...
│   └── README.md               # This file (Repository overview)