> ## 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.

# Fireworks Provider

> Use Fireworks AI with PraisonAI TypeScript

# Fireworks Provider

Fast inference with Fireworks AI.

## Environment Variables

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

## Supported Modalities

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

## Quick Start

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

const agent = new Agent({
  name: 'FireworksAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'fireworks/llama-v3p1-70b-instruct'
});

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

## Related

* [Fireworks CLI Usage](/docs/js/providers/fireworks-cli)
