🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@voltagent/groq-ai

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voltagent/groq-ai

VoltAgent Groq AI - Groq provider integration for VoltAgent

0.1.3
latest
npm
Version published
Weekly downloads
28
-72.82%
Maintainers
1
Weekly downloads
 
Created
Source

@voltagent/groq-ai

VoltAgent Groq AI provider integration using the Groq SDK (@groq-sdk).

This package allows you to use Gorq's fast inferencing models within your VoltAgent agents.

Installation

npm install @voltagent/groq-ai
# or
yarn add @voltagent/groq-ai
# or
pnpm add @voltagent/groq-ai

Usage

You need to provide your Groq API key. You can get one from Groq after signing up.

import { VoltAgent, Agent } from "@voltagent/core";
import { GroqProvider } from "@voltagent/groq-ai";

const agent = new Agent({
  name: "finance",
  description: "A helpful assistant that answers questions without using tools",
  llm: new GroqProvider(),
  model: "meta-llama/llama-4-scout-17b-16e-instruct",
});

new VoltAgent({
  agents: {
    agent,
  },
});

License

Licensed under the MIT License, Copyright © 2025-present VoltAgent.

FAQs

Package last updated on 01 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts