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

# Together.ai Provider

> Use Together.ai with PraisonAI TypeScript

# Together.ai Provider

Access open-source models via Together.ai.

## Environment Variables

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export TOGETHER_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: 'TogetherAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'togetherai/meta-llama/Llama-3-70b-chat-hf'
});

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

## Related

* [Together.ai CLI Usage](/docs/js/providers/togetherai-cli)
