mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
25 lines
699 B
Markdown
25 lines
699 B
Markdown
|
# Google Vertex AI
|
||
|
|
||
|
>[Vertex AI](https://cloud.google.com/vertex-ai/docs/start/introduction-unified-platform) is a machine learning (ML)
|
||
|
> platform that lets you train and deploy ML models and AI applications.
|
||
|
> `Vertex AI` combines data engineering, data science, and ML engineering workflows, enabling your teams to
|
||
|
> collaborate using a common toolset.
|
||
|
|
||
|
## Installation and Setup
|
||
|
|
||
|
|
||
|
```bash
|
||
|
pip install google-cloud-aiplatform
|
||
|
```
|
||
|
|
||
|
See the [setup instructions](../modules/models/chat/integrations/google_vertex_ai_palm.ipynb)
|
||
|
|
||
|
|
||
|
## Chat Models
|
||
|
|
||
|
See a [usage example](../modules/models/chat/integrations/google_vertex_ai_palm.ipynb)
|
||
|
|
||
|
```python
|
||
|
from langchain.chat_models import ChatVertexAI
|
||
|
```
|