From 8e66822100676096dd2b27070269667c27ec72d1 Mon Sep 17 00:00:00 2001 From: Leonid Ganeline Date: Tue, 15 Oct 2024 16:08:52 -0700 Subject: [PATCH] docs: `integrations google` update (#27218) I've made several titles more compact hence a more compact menu. Co-authored-by: Erick Friis --- docs/docs/integrations/platforms/google.mdx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/docs/integrations/platforms/google.mdx b/docs/docs/integrations/platforms/google.mdx index ea07b283634a7..f27587dc3e694 100644 --- a/docs/docs/integrations/platforms/google.mdx +++ b/docs/docs/integrations/platforms/google.mdx @@ -72,7 +72,7 @@ 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). @@ -80,19 +80,19 @@ See a [usage example](/docs/integrations/llms/google_vertex_ai_palm). 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`. @@ -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`. @@ -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. @@ -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. @@ -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. @@ -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. @@ -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