npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@voltagent/google-ai

v0.4.2

Published

VoltAgent Google AI - Google Generative AI provider integration for VoltAgent

Readme

Google AI Provider (@voltagent/google-ai)

⚠️ DEPRECATED: This package is deprecated. Please use the Vercel AI SDK's Google providers with @voltagent/vercel-ai instead.

Migration Guide:

// Old (deprecated)
import { GoogleAIProvider } from "@voltagent/google-ai";
const provider = new GoogleAIProvider({ apiKey: "..." });

// New (recommended) - for Gemini API
import { VercelAIProvider } from "@voltagent/vercel-ai";
import { google } from "@ai-sdk/google";
const provider = new VercelAIProvider();
// Use with: model: google("gemini-1.5-pro")

// New (recommended) - for Vertex AI
import { VercelAIProvider } from "@voltagent/vercel-ai";
import { vertex } from "@ai-sdk/google-vertex";
const provider = new VercelAIProvider();
// Use with: model: vertex("gemini-1.5-pro")

The Google AI Provider integrates VoltAgent with Google's Generative AI capabilities, supporting both the Gemini API (via API Key) and Vertex AI (via project/location configuration). It wraps the @google/genai SDK.

Key Characteristics:

  • Dual API Support: Works seamlessly with both Google AI Studio's Gemini API (using an API key) and Google Cloud's Vertex AI platform.
  • Model Agnostic (within Google): Accepts standard Google model identifier strings (e.g., 'gemini-1.5-pro', 'gemini-1.5-flash').
  • Core Functionality: Focuses on text generation, streaming, and structured object generation using the underlying Google SDK.

Installation

npm install @voltagent/core @voltagent/google-ai zod

Note: @google/genai is a peer dependency. zod is required if using generateObject.

Configuration

Option 1: Gemini API (API Key)

import { GoogleAIProvider } from "@voltagent/google-ai";

// Direct API Key
const googleProvider = new GoogleAIProvider({
  apiKey: "YOUR_GOOGLE_API_KEY",
});

// Or via Environment Variable (GOOGLE_GENERATIVE_AI_API_KEY)
const googleProvider = new GoogleAIProvider({});

Option 2: Vertex AI (Project & Location)

import { GoogleAIProvider } from "@voltagent/google-ai";

const googleProvider = new GoogleAIProvider({
  project: "YOUR_GCP_PROJECT_ID",
  location: "us-central1", // or your preferred region
});

Usage

import { Agent } from "@voltagent/core";
import { GoogleAIProvider } from "@voltagent/google-ai";

const googleProvider = new GoogleAIProvider({ apiKey: "YOUR_API_KEY" });

const agent = new Agent({
  name: "Gemini Agent",
  instructions: "An agent powered by Google's Gemini",
  llm: googleProvider,
  model: "gemini-1.5-flash", // or "gemini-1.5-pro"
});

// Example call
async function run() {
  const response = await agent.generateText("What is the capital of France?");
  console.log(response.text);
}

run();

Supported Methods

  • generateText: ✅ Supported
  • streamText: ✅ Supported
  • generateObject: ✅ Supported
  • streamObject: ❌ Not supported

Tool Calling Support

Supported.

The provider supports tool calling:

import { createTool } from "@voltagent/core";
import { z } from "zod";

const weatherTool = createTool({
  name: "get_current_weather",
  description: "Get the current weather in a location",
  parameters: z.object({
    location: z.string().describe("The location to get weather for"),
  }),
  execute: async (input) => {
    return {
      location: input.location,
      temperature: 72,
      condition: "sunny",
    };
  },
});

const agent = new Agent({
  name: "weather-agent",
  instructions: "A helpful weather assistant",
  llm: new GoogleAIProvider(),
  model: "gemini-1.5-flash",
  tools: [weatherTool],
});

Model Selection & Options

Set the model via the model property during Agent instantiation:

const response = await agent.generateText("Write a creative story.", {
  provider: {
    temperature: 0.9,
    maxTokens: 1024,
    // Other Google-specific parameters
  },
});

Refer to the Google AI documentation for available configuration parameters.