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

# Google Vertex AI Provider

> Use Google Vertex AI with PraisonAI TypeScript

# Google Vertex AI Provider

Enterprise-grade AI with Google Vertex AI.

## Environment Variables

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
export GOOGLE_CLOUD_PROJECT=your-project-id
export GOOGLE_CLOUD_LOCATION=us-central1
```

## Quick Start

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

const agent = new Agent({
  name: 'VertexAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'google-vertex/gemini-1.5-pro'
});

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

## Related

* [Google Vertex AI CLI Usage](/docs/js/providers/google-vertex-cli)
