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

# Cohere Provider

> Use Cohere models with PraisonAI TypeScript

# Cohere Provider

Use Cohere's Command models and embeddings.

## Environment Variables

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export COHERE_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: 'CohereAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'cohere/command-r-plus'
});

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

## Related

* [Cohere CLI Usage](/docs/js/providers/cohere-cli)
