Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md


VoltAgent is an open source TypeScript framework for building and orchestrating AI agents.
Escape the limitations of no-code builders and the complexity of starting from scratch.

npm version Contributor Covenant Discord Twitter Follow


VoltAgent: Build AI Agents Fast and Flexibly

VoltAgent is an open-source TypeScript framework for creating and managing AI agents. It provides modular components to build, customize, and scale agents with ease. From connecting to APIs and memory management to supporting multiple LLMs, VoltAgent simplifies the process of creating sophisticated AI systems. It enables fast development, maintains clean code, and offers flexibility to switch between models and tools without vendor lock-in.

Try This Example

To quickly get started with the Google Vertex AI example, run:

npm create voltagent-app@latest -- --example with-google-vertex-ai

Set Up Your Environment Variables

  1. Copy the Example Environment File

    First, copy the provided .env.example file to create your own .env file:

    cp .env.example .env
  2. Configure Google Cloud Credentials

    Open the .env file and update the following variables with your Google Cloud project details and credentials:

    • GOOGLE_CLOUD_PROJECT
    • GOOGLE_CLOUD_LOCATION
    • GOOGLE_APPLICATION_CREDENTIALS

    For detailed instructions on obtaining and configuring these variables, see:

    Tip: Make sure your service account has the necessary permissions for Vertex AI.

  3. Save the .env file and proceed with running the example.

npm install
npm run dev