Skip to content

Commit

Permalink
docs: integrations google update (#27218)
Browse files Browse the repository at this point in the history
I've made several titles more compact hence a more compact menu.

Co-authored-by: Erick Friis <erick@langchain.dev>
  • Loading branch information
leo-gan and efriis authored Oct 15, 2024
1 parent 3f74dfc commit 8e66822
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/docs/integrations/platforms/google.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,27 +72,27 @@ See a [usage example](/docs/integrations/chat/google_vertex_ai_palm).
from langchain_google_vertexai import ChatVertexAI
```

### Chat Anthropic on Vertex AI Model Garden
### Anthropic on Vertex AI Model Garden

See a [usage example](/docs/integrations/llms/google_vertex_ai_palm).

```python
from langchain_google_vertexai.model_garden import ChatAnthropicVertex
```

### Chat Llama on Vertex AI Model Garden
### Llama on Vertex AI Model Garden

```python
from langchain_google_vertexai.model_garden_maas.llama import VertexModelGardenLlama
```

### Chat Mistral on Vertex AI Model Garden
### Mistral on Vertex AI Model Garden

```python
from langchain_google_vertexai.model_garden_maas.mistral import VertexModelGardenMistral
```

### Chat Gemma local from Hugging Face
### Gemma local from Hugging Face

>Local `Gemma` model loaded from `HuggingFace`.
Expand All @@ -106,7 +106,7 @@ pip install langchain-google-vertexai
from langchain_google_vertexai.gemma import GemmaChatLocalHF
```

### Chat Gemma local from Kaggle
### Gemma local from Kaggle

>Local `Gemma` model loaded from `Kaggle`.
Expand All @@ -120,7 +120,7 @@ pip install langchain-google-vertexai
from langchain_google_vertexai.gemma import GemmaChatLocalKaggle
```

### Chat Gemma on Vertex AI Model Garden
### Gemma on Vertex AI Model Garden

We need to install `langchain-google-vertexai` python package.

Expand All @@ -132,7 +132,7 @@ pip install langchain-google-vertexai
from langchain_google_vertexai.gemma import GemmaChatVertexAIModelGarden
```

### Vertex AI image captioning chat
### Vertex AI image captioning

>Implementation of the `Image Captioning model` as a chat.
Expand All @@ -146,7 +146,7 @@ pip install langchain-google-vertexai
from langchain_google_vertexai.vision_models import VertexAIImageCaptioningChat
```

### Vertex AI image editor chat
### Vertex AI image editor

>Given an image and a prompt, edit the image. Currently only supports mask-free editing.
Expand All @@ -160,7 +160,7 @@ pip install langchain-google-vertexai
from langchain_google_vertexai.vision_models import VertexAIImageEditorChat
```

### Vertex AI image generator chat
### Vertex AI image generator

>Generates an image from a prompt.
Expand All @@ -174,7 +174,7 @@ pip install langchain-google-vertexai
from langchain_google_vertexai.vision_models import VertexAIImageGeneratorChat
```

### Vertex AI visual QnA chat
### Vertex AI visual QnA

>Chat implementation of a visual QnA model
Expand Down

0 comments on commit 8e66822

Please sign in to comment.