From 7943f322e8c2acec79fca5644e93dfdb288f5c18 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Mon, 18 Dec 2023 10:58:53 -0800 Subject: [PATCH] docs[patch]: more keywords (#14858) --- docs/docs/expression_language/get_started.ipynb | 1 + docs/docs/integrations/stores/in_memory.ipynb | 1 + .../docs/integrations/text_embedding/azureopenai.ipynb | 10 ++++++++++ docs/docs/integrations/toolkits/python.ipynb | 10 ++++++++++ docs/docs/modules/agents/how_to/custom_llm_agent.mdx | 4 ++++ .../modules/agents/how_to/custom_llm_chat_agent.mdx | 4 ++++ .../modules/data_connection/document_loaders/pdf.mdx | 4 ++++ 7 files changed, 34 insertions(+) diff --git a/docs/docs/expression_language/get_started.ipynb b/docs/docs/expression_language/get_started.ipynb index bd6b33a09f4fa..d3533eacd3472 100644 --- a/docs/docs/expression_language/get_started.ipynb +++ b/docs/docs/expression_language/get_started.ipynb @@ -8,6 +8,7 @@ "---\n", "sidebar_position: 0\n", "title: Get started\n", + "keywords: [chain.invoke]\n", "---" ] }, diff --git a/docs/docs/integrations/stores/in_memory.ipynb b/docs/docs/integrations/stores/in_memory.ipynb index 03e2f2c5b638e..aa5e35ef07c8a 100644 --- a/docs/docs/integrations/stores/in_memory.ipynb +++ b/docs/docs/integrations/stores/in_memory.ipynb @@ -7,6 +7,7 @@ "---\n", "sidebar_label: In Memory\n", "sidebar_position: 2\n", + "keywords: [InMemoryStore]\n", "---" ] }, diff --git a/docs/docs/integrations/text_embedding/azureopenai.ipynb b/docs/docs/integrations/text_embedding/azureopenai.ipynb index 6c500f0d7791e..214be3eca2629 100644 --- a/docs/docs/integrations/text_embedding/azureopenai.ipynb +++ b/docs/docs/integrations/text_embedding/azureopenai.ipynb @@ -1,5 +1,15 @@ { "cells": [ + { + "cell_type": "raw", + "id": "0aed0743", + "metadata": {}, + "source": [ + "---\n", + "keywords: [AzureOpenAIEmbeddings]\n", + "---" + ] + }, { "cell_type": "markdown", "id": "c3852491", diff --git a/docs/docs/integrations/toolkits/python.ipynb b/docs/docs/integrations/toolkits/python.ipynb index 2569a2781705e..4cb7e015a96be 100644 --- a/docs/docs/integrations/toolkits/python.ipynb +++ b/docs/docs/integrations/toolkits/python.ipynb @@ -1,5 +1,15 @@ { "cells": [ + { + "cell_type": "raw", + "id": "be75cb7e", + "metadata": {}, + "source": [ + "---\n", + "keywords: [PythonREPLTool]\n", + "---" + ] + }, { "cell_type": "markdown", "id": "82a4c2cc-20ea-4b20-a565-63e905dee8ff", diff --git a/docs/docs/modules/agents/how_to/custom_llm_agent.mdx b/docs/docs/modules/agents/how_to/custom_llm_agent.mdx index 6e92c54717e3c..f9ab5ceeabe89 100644 --- a/docs/docs/modules/agents/how_to/custom_llm_agent.mdx +++ b/docs/docs/modules/agents/how_to/custom_llm_agent.mdx @@ -1,3 +1,7 @@ +--- +keywords: [LLMSingleActionAgent] +--- + # Custom LLM Agent This notebook goes through how to create your own custom LLM agent. diff --git a/docs/docs/modules/agents/how_to/custom_llm_chat_agent.mdx b/docs/docs/modules/agents/how_to/custom_llm_chat_agent.mdx index f9d8045dc6e06..10272bf2d9e84 100644 --- a/docs/docs/modules/agents/how_to/custom_llm_chat_agent.mdx +++ b/docs/docs/modules/agents/how_to/custom_llm_chat_agent.mdx @@ -1,3 +1,7 @@ +--- +keywords: [LLMSingleActionAgent] +--- + # Custom LLM Chat Agent This notebook explains how to create your own custom agent based on a chat model. diff --git a/docs/docs/modules/data_connection/document_loaders/pdf.mdx b/docs/docs/modules/data_connection/document_loaders/pdf.mdx index 023837e05d63a..ef06d12795206 100644 --- a/docs/docs/modules/data_connection/document_loaders/pdf.mdx +++ b/docs/docs/modules/data_connection/document_loaders/pdf.mdx @@ -1,3 +1,7 @@ +--- +keywords: [PyPDFDirectoryLoader, PyMuPDFLoader] +--- + # PDF >[Portable Document Format (PDF)](https://en.wikipedia.org/wiki/PDF), standardized as ISO 32000, is a file format developed by Adobe in 1992 to present documents, including text formatting and images, in a manner independent of application software, hardware, and operating systems.