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

# Amazon Bedrock Provider

> Use Amazon Bedrock with PraisonAI TypeScript

# Amazon Bedrock Provider

Use AWS Bedrock for managed AI models.

## Environment Variables

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
export AWS_REGION=us-east-1
```

## 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: 'BedrockAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'amazon-bedrock/anthropic.claude-3-sonnet'
});

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

## Related

* [Amazon Bedrock CLI](/docs/js/providers/amazon-bedrock-cli)
