> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Groq Provider

> Use Groq inference with PraisonAI TypeScript

# Groq Provider

Ultra-fast inference with Groq's LPU technology.

## Environment Variables

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export GROQ_API_KEY=gsk_...
```

## Supported Modalities

| Modality  | Supported |
| --------- | --------- |
| Text/Chat | ✅         |
| Tools     | ✅         |

## Quick Start

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { Agent } from 'praisonai';

const agent = new Agent({
  name: 'GroqAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'groq/llama-3.3-70b-versatile'
});

const response = await agent.chat('Hello!');
```

## Available Models

| Model                     | Description   |
| ------------------------- | ------------- |
| `llama-3.3-70b-versatile` | Llama 3.3 70B |
| `mixtral-8x7b-32768`      | Mixtral 8x7B  |
| `gemma2-9b-it`            | Gemma 2 9B    |

## Related

* [Groq CLI Usage](/docs/js/providers/groq-cli)
