diff --git a/docs/extras/_templates/integration.mdx b/docs/extras/_templates/integration.mdx index d8c37136210..0263992039f 100644 --- a/docs/extras/_templates/integration.mdx +++ b/docs/extras/_templates/integration.mdx @@ -31,7 +31,7 @@ There isn't any special setup for it. ## LLM -See a [usage example](/docs/modules/model_io/models/llms/integrations/INCLUDE_REAL_NAME.html). +See a [usage example](/docs/integrations/llms/INCLUDE_REAL_NAME). ```python from langchain.llms import integration_class_REPLACE_ME @@ -40,7 +40,7 @@ from langchain.llms import integration_class_REPLACE_ME ## Text Embedding Models -See a [usage example](/docs/modules/data_connection/text_embedding/integrations/INCLUDE_REAL_NAME.html) +See a [usage example](/docs/integrations/text_embedding/INCLUDE_REAL_NAME) ```python from langchain.embeddings import integration_class_REPLACE_ME @@ -49,7 +49,7 @@ from langchain.embeddings import integration_class_REPLACE_ME ## Chat Models -See a [usage example](/docs/modules/model_io/models/chat/integrations/INCLUDE_REAL_NAME.html) +See a [usage example](/docs/integrations/chat/INCLUDE_REAL_NAME) ```python from langchain.chat_models import integration_class_REPLACE_ME @@ -57,7 +57,7 @@ from langchain.chat_models import integration_class_REPLACE_ME ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/INCLUDE_REAL_NAME.html). +See a [usage example](/docs/integrations/document_loaders/INCLUDE_REAL_NAME). ```python from langchain.document_loaders import integration_class_REPLACE_ME diff --git a/docs/extras/integrations/callbacks/promptlayer.ipynb b/docs/extras/integrations/callbacks/promptlayer.ipynb index a5fc2d40f06..f6d7cd97647 100644 --- a/docs/extras/integrations/callbacks/promptlayer.ipynb +++ b/docs/extras/integrations/callbacks/promptlayer.ipynb @@ -11,7 +11,7 @@ "\n", "[PromptLayer](https://promptlayer.com) is a an LLM observability platform that lets you visualize requests, version prompts, and track usage. In this guide we will go over how to setup the `PromptLayerCallbackHandler`. \n", "\n", - "While PromptLayer does have LLMs that integrate directly with LangChain (eg [`PromptLayerOpenAI`](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/promptlayer_openai)), this callback is the recommended way to integrate PromptLayer with LangChain.\n", + "While PromptLayer does have LLMs that integrate directly with LangChain (eg [`PromptLayerOpenAI`](https://python.langchain.com/docs/integrations/llms/promptlayer_openai)), this callback is the recommended way to integrate PromptLayer with LangChain.\n", "\n", "See [our docs](https://docs.promptlayer.com/languages/langchain) for more information." ] diff --git a/docs/extras/integrations/document_loaders/apify_dataset.ipynb b/docs/extras/integrations/document_loaders/apify_dataset.ipynb index 8fff25d17ac..33709a417b5 100644 --- a/docs/extras/integrations/document_loaders/apify_dataset.ipynb +++ b/docs/extras/integrations/document_loaders/apify_dataset.ipynb @@ -13,7 +13,7 @@ "\n", "## Prerequisites\n", "\n", - "You need to have an existing dataset on the Apify platform. If you don't have one, please first check out [this notebook](/docs/modules/agents/tools/integrations/apify.html) on how to use Apify to extract content from documentation, knowledge bases, help centers, or blogs." + "You need to have an existing dataset on the Apify platform. If you don't have one, please first check out [this notebook](/docs/integrations/tools/apify.html) on how to use Apify to extract content from documentation, knowledge bases, help centers, or blogs." ] }, { diff --git a/docs/extras/integrations/llms/azure_openai_example.ipynb b/docs/extras/integrations/llms/azure_openai_example.ipynb index 987e4ccc08d..eb5dbd22737 100644 --- a/docs/extras/integrations/llms/azure_openai_example.ipynb +++ b/docs/extras/integrations/llms/azure_openai_example.ipynb @@ -36,7 +36,7 @@ "## Deployments\n", "With Azure OpenAI, you set up your own deployments of the common GPT-3 and Codex models. When calling the API, you need to specify the deployment you want to use.\n", "\n", - "_**Note**: These docs are for the Azure text completion models. Models like GPT-4 are chat models. They have a slightly different interface, and can be accessed via the `AzureChatOpenAI` class. For docs on Azure chat see [Azure Chat OpenAI documentation](/docs/modules/model_io/models/chat/integrations/azure_chat_openai)._\n", + "_**Note**: These docs are for the Azure text completion models. Models like GPT-4 are chat models. They have a slightly different interface, and can be accessed via the `AzureChatOpenAI` class. For docs on Azure chat see [Azure Chat OpenAI documentation](/docs/integrations/chat/azure_chat_openai)._\n", "\n", "Let's say your deployment name is `text-davinci-002-prod`. In the `openai` Python API, you can specify this deployment with the `engine` parameter. For example:\n", "\n", diff --git a/docs/extras/integrations/providers/airbyte.mdx b/docs/extras/integrations/providers/airbyte.mdx index 98b109806c6..16b1deca8f6 100644 --- a/docs/extras/integrations/providers/airbyte.mdx +++ b/docs/extras/integrations/providers/airbyte.mdx @@ -22,7 +22,7 @@ Have `docker desktop` installed. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/airbyte_json.html). +See a [usage example](/docs/integrations/document_loaders/airbyte_json). ```python from langchain.document_loaders import AirbyteJSONLoader diff --git a/docs/extras/integrations/providers/airtable.md b/docs/extras/integrations/providers/airtable.md index 435f7fcce55..ce1edcecbd0 100644 --- a/docs/extras/integrations/providers/airtable.md +++ b/docs/extras/integrations/providers/airtable.md @@ -25,4 +25,4 @@ pip install pyairtable from langchain.document_loaders import AirtableLoader ``` -See an [example](/docs/modules/data_connection/document_loaders/integrations/airtable.html). +See an [example](/docs/integrations/document_loaders/airtable.html). diff --git a/docs/extras/integrations/providers/aleph_alpha.mdx b/docs/extras/integrations/providers/aleph_alpha.mdx index ffda6554add..edb3813670a 100644 --- a/docs/extras/integrations/providers/aleph_alpha.mdx +++ b/docs/extras/integrations/providers/aleph_alpha.mdx @@ -21,7 +21,7 @@ ALEPH_ALPHA_API_KEY = getpass() ## LLM -See a [usage example](/docs/modules/model_io/models/llms/integrations/aleph_alpha.html). +See a [usage example](/docs/integrations/llms/aleph_alpha). ```python from langchain.llms import AlephAlpha @@ -29,7 +29,7 @@ from langchain.llms import AlephAlpha ## Text Embedding Models -See a [usage example](/docs/modules/data_connection/text_embedding/integrations/aleph_alpha.html). +See a [usage example](/docs/integrations/text_embedding/aleph_alpha). ```python from langchain.embeddings import AlephAlphaSymmetricSemanticEmbedding, AlephAlphaAsymmetricSemanticEmbedding diff --git a/docs/extras/integrations/providers/amazon_api_gateway.mdx b/docs/extras/integrations/providers/amazon_api_gateway.mdx index 21fb7ba0c82..8d2a435c2f5 100644 --- a/docs/extras/integrations/providers/amazon_api_gateway.mdx +++ b/docs/extras/integrations/providers/amazon_api_gateway.mdx @@ -6,7 +6,7 @@ API Gateway handles all the tasks involved in accepting and processing up to hun ## LLM -See a [usage example](/docs/modules/model_io/models/llms/integrations/amazon_api_gateway_example.html). +See a [usage example](/docs/integrations/llms/amazon_api_gateway_example). ```python from langchain.llms import AmazonAPIGateway diff --git a/docs/extras/integrations/providers/analyticdb.mdx b/docs/extras/integrations/providers/analyticdb.mdx index 08257f62d2b..b83e7a0a45e 100644 --- a/docs/extras/integrations/providers/analyticdb.mdx +++ b/docs/extras/integrations/providers/analyticdb.mdx @@ -12,4 +12,4 @@ To import this vectorstore: from langchain.vectorstores import AnalyticDB ``` -For a more detailed walkthrough of the AnalyticDB wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/analyticdb.html) +For a more detailed walkthrough of the AnalyticDB wrapper, see [this notebook](/docs/integrations/vectorstores/analyticdb.html) diff --git a/docs/extras/integrations/providers/annoy.mdx b/docs/extras/integrations/providers/annoy.mdx index ed3c56180c8..705ad3cf690 100644 --- a/docs/extras/integrations/providers/annoy.mdx +++ b/docs/extras/integrations/providers/annoy.mdx @@ -11,7 +11,7 @@ pip install annoy ## Vectorstore -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/annoy.html). +See a [usage example](/docs/integrations/vectorstores/annoy). ```python from langchain.vectorstores import Annoy diff --git a/docs/extras/integrations/providers/apify.mdx b/docs/extras/integrations/providers/apify.mdx index b2d9c16fb07..cafd99179d9 100644 --- a/docs/extras/integrations/providers/apify.mdx +++ b/docs/extras/integrations/providers/apify.mdx @@ -32,7 +32,7 @@ You can use the `ApifyWrapper` to run Actors on the Apify platform. from langchain.utilities import ApifyWrapper ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/apify.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/apify.html). ### Loader @@ -43,4 +43,4 @@ You can also use our `ApifyDatasetLoader` to get data from Apify dataset. from langchain.document_loaders import ApifyDatasetLoader ``` -For a more detailed walkthrough of this loader, see [this notebook](/docs/modules/data_connection/document_loaders/integrations/apify_dataset.html). +For a more detailed walkthrough of this loader, see [this notebook](/docs/integrations/document_loaders/apify_dataset.html). diff --git a/docs/extras/integrations/providers/arxiv.mdx b/docs/extras/integrations/providers/arxiv.mdx index f2b3b8098ed..fb2fa5a9d89 100644 --- a/docs/extras/integrations/providers/arxiv.mdx +++ b/docs/extras/integrations/providers/arxiv.mdx @@ -21,7 +21,7 @@ pip install pymupdf ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/arxiv.html). +See a [usage example](/docs/integrations/document_loaders/arxiv). ```python from langchain.document_loaders import ArxivLoader @@ -29,7 +29,7 @@ from langchain.document_loaders import ArxivLoader ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/arxiv.html). +See a [usage example](/docs/integrations/retrievers/arxiv). ```python from langchain.retrievers import ArxivRetriever diff --git a/docs/extras/integrations/providers/atlas.mdx b/docs/extras/integrations/providers/atlas.mdx index 136410a0a96..9dbfabbba59 100644 --- a/docs/extras/integrations/providers/atlas.mdx +++ b/docs/extras/integrations/providers/atlas.mdx @@ -24,4 +24,4 @@ To import this vectorstore: from langchain.vectorstores import AtlasDB ``` -For a more detailed walkthrough of the AtlasDB wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/atlas.html) +For a more detailed walkthrough of the AtlasDB wrapper, see [this notebook](/docs/integrations/vectorstores/atlas.html) diff --git a/docs/extras/integrations/providers/awadb.md b/docs/extras/integrations/providers/awadb.md index 14515977ab9..7c2e9943f54 100644 --- a/docs/extras/integrations/providers/awadb.md +++ b/docs/extras/integrations/providers/awadb.md @@ -18,4 +18,4 @@ whether for semantic search or example selection. from langchain.vectorstores import AwaDB ``` -For a more detailed walkthrough of the AwaDB wrapper, see [here](/docs/modules/data_connection/vectorstores/integrations/awadb.html). +For a more detailed walkthrough of the AwaDB wrapper, see [here](/docs/integrations/vectorstores/awadb.html). diff --git a/docs/extras/integrations/providers/aws_s3.mdx b/docs/extras/integrations/providers/aws_s3.mdx index 592202ad435..e4d38e85e2c 100644 --- a/docs/extras/integrations/providers/aws_s3.mdx +++ b/docs/extras/integrations/providers/aws_s3.mdx @@ -16,9 +16,9 @@ pip install boto3 ## Document Loader -See a [usage example for S3DirectoryLoader](/docs/modules/data_connection/document_loaders/integrations/aws_s3_directory.html). +See a [usage example for S3DirectoryLoader](/docs/integrations/document_loaders/aws_s3_directory.html). -See a [usage example for S3FileLoader](/docs/modules/data_connection/document_loaders/integrations/aws_s3_file.html). +See a [usage example for S3FileLoader](/docs/integrations/document_loaders/aws_s3_file.html). ```python from langchain.document_loaders import S3DirectoryLoader, S3FileLoader diff --git a/docs/extras/integrations/providers/azlyrics.mdx b/docs/extras/integrations/providers/azlyrics.mdx index 593752a384d..97e54bf1cc2 100644 --- a/docs/extras/integrations/providers/azlyrics.mdx +++ b/docs/extras/integrations/providers/azlyrics.mdx @@ -9,7 +9,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/azlyrics.html). +See a [usage example](/docs/integrations/document_loaders/azlyrics). ```python from langchain.document_loaders import AZLyricsLoader diff --git a/docs/extras/integrations/providers/azure_blob_storage.mdx b/docs/extras/integrations/providers/azure_blob_storage.mdx index fe01f98aa34..b4463ba6740 100644 --- a/docs/extras/integrations/providers/azure_blob_storage.mdx +++ b/docs/extras/integrations/providers/azure_blob_storage.mdx @@ -23,13 +23,13 @@ pip install azure-storage-blob ## Document Loader -See a [usage example for the Azure Blob Storage](/docs/modules/data_connection/document_loaders/integrations/azure_blob_storage_container.html). +See a [usage example for the Azure Blob Storage](/docs/integrations/document_loaders/azure_blob_storage_container.html). ```python from langchain.document_loaders import AzureBlobStorageContainerLoader ``` -See a [usage example for the Azure Files](/docs/modules/data_connection/document_loaders/integrations/azure_blob_storage_file.html). +See a [usage example for the Azure Files](/docs/integrations/document_loaders/azure_blob_storage_file.html). ```python from langchain.document_loaders import AzureBlobStorageFileLoader diff --git a/docs/extras/integrations/providers/azure_cognitive_search_.mdx b/docs/extras/integrations/providers/azure_cognitive_search_.mdx index 0d48618ff5a..74a8e229999 100644 --- a/docs/extras/integrations/providers/azure_cognitive_search_.mdx +++ b/docs/extras/integrations/providers/azure_cognitive_search_.mdx @@ -17,7 +17,7 @@ See [set up instructions](https://learn.microsoft.com/en-us/azure/search/search- ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/azure_cognitive_search.html). +See a [usage example](/docs/integrations/retrievers/azure_cognitive_search). ```python from langchain.retrievers import AzureCognitiveSearchRetriever diff --git a/docs/extras/integrations/providers/azure_openai.mdx b/docs/extras/integrations/providers/azure_openai.mdx index 6fc7b015f8a..c45c8604a35 100644 --- a/docs/extras/integrations/providers/azure_openai.mdx +++ b/docs/extras/integrations/providers/azure_openai.mdx @@ -27,7 +27,7 @@ os.environ["OPENAI_API_VERSION"] = "2023-05-15" ## LLM -See a [usage example](/docs/modules/model_io/models/llms/integrations/azure_openai_example.html). +See a [usage example](/docs/integrations/llms/azure_openai_example). ```python from langchain.llms import AzureOpenAI @@ -35,7 +35,7 @@ from langchain.llms import AzureOpenAI ## Text Embedding Models -See a [usage example](/docs/modules/data_connection/text_embedding/integrations/azureopenai.html) +See a [usage example](/docs/integrations/text_embedding/azureopenai) ```python from langchain.embeddings import OpenAIEmbeddings @@ -43,7 +43,7 @@ from langchain.embeddings import OpenAIEmbeddings ## Chat Models -See a [usage example](/docs/modules/model_io/models/chat/integrations/azure_chat_openai.html) +See a [usage example](/docs/integrations/chat/azure_chat_openai) ```python from langchain.chat_models import AzureChatOpenAI diff --git a/docs/extras/integrations/providers/bedrock.mdx b/docs/extras/integrations/providers/bedrock.mdx index ae7ee2a66db..f7810c4b4ba 100644 --- a/docs/extras/integrations/providers/bedrock.mdx +++ b/docs/extras/integrations/providers/bedrock.mdx @@ -10,7 +10,7 @@ pip install boto3 ## LLM -See a [usage example](/docs/modules/model_io/models/llms/integrations/bedrock.html). +See a [usage example](/docs/integrations/llms/bedrock). ```python from langchain import Bedrock @@ -18,7 +18,7 @@ from langchain import Bedrock ## Text Embedding Models -See a [usage example](/docs/modules/data_connection/text_embedding/integrations/bedrock.html). +See a [usage example](/docs/integrations/text_embedding/bedrock). ```python from langchain.embeddings import BedrockEmbeddings ``` diff --git a/docs/extras/integrations/providers/bilibili.mdx b/docs/extras/integrations/providers/bilibili.mdx index 9f1384959d4..6ff7f9b67ca 100644 --- a/docs/extras/integrations/providers/bilibili.mdx +++ b/docs/extras/integrations/providers/bilibili.mdx @@ -10,7 +10,7 @@ pip install bilibili-api-python ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/bilibili.html). +See a [usage example](/docs/integrations/document_loaders/bilibili). ```python from langchain.document_loaders import BiliBiliLoader diff --git a/docs/extras/integrations/providers/blackboard.mdx b/docs/extras/integrations/providers/blackboard.mdx index 27b5c7cc014..69a2a176fed 100644 --- a/docs/extras/integrations/providers/blackboard.mdx +++ b/docs/extras/integrations/providers/blackboard.mdx @@ -14,7 +14,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/blackboard.html). +See a [usage example](/docs/integrations/document_loaders/blackboard). ```python from langchain.document_loaders import BlackboardLoader diff --git a/docs/extras/integrations/providers/brave_search.mdx b/docs/extras/integrations/providers/brave_search.mdx index 2c22a428561..9291c991741 100644 --- a/docs/extras/integrations/providers/brave_search.mdx +++ b/docs/extras/integrations/providers/brave_search.mdx @@ -21,7 +21,7 @@ To get access to the Brave Search API, you need to [create an account and get an ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/brave_search.html). +See a [usage example](/docs/integrations/document_loaders/brave_search). ```python from langchain.document_loaders import BraveSearchLoader @@ -29,7 +29,7 @@ from langchain.document_loaders import BraveSearchLoader ## Tool -See a [usage example](/docs/modules/agents/tools/integrations/brave_search.html). +See a [usage example](/docs/integrations/tools/brave_search). ```python from langchain.tools import BraveSearch diff --git a/docs/extras/integrations/providers/cassandra.mdx b/docs/extras/integrations/providers/cassandra.mdx index eb13b93b2ca..404a44dd985 100644 --- a/docs/extras/integrations/providers/cassandra.mdx +++ b/docs/extras/integrations/providers/cassandra.mdx @@ -18,7 +18,7 @@ pip install cassio ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/cassandra.html). +See a [usage example](/docs/integrations/vectorstores/cassandra). ```python from langchain.memory import CassandraChatMessageHistory @@ -28,7 +28,7 @@ from langchain.memory import CassandraChatMessageHistory ## Memory -See a [usage example](/docs/modules/memory/integrations/cassandra_chat_message_history.html). +See a [usage example](/docs/modules/memory/integrations/cassandra_chat_message_history). ```python from langchain.memory import CassandraChatMessageHistory diff --git a/docs/extras/integrations/providers/chaindesk.mdx b/docs/extras/integrations/providers/chaindesk.mdx index 9fcabf4b8ed..202d9ad602f 100644 --- a/docs/extras/integrations/providers/chaindesk.mdx +++ b/docs/extras/integrations/providers/chaindesk.mdx @@ -10,7 +10,7 @@ We need the [API Key](https://docs.chaindesk.ai/api-reference/authentication). ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/chaindesk.html). +See a [usage example](/docs/integrations/retrievers/chaindesk). ```python from langchain.retrievers import ChaindeskRetriever diff --git a/docs/extras/integrations/providers/chroma.mdx b/docs/extras/integrations/providers/chroma.mdx index 33887b9e4f1..f642428b6f3 100644 --- a/docs/extras/integrations/providers/chroma.mdx +++ b/docs/extras/integrations/providers/chroma.mdx @@ -18,11 +18,11 @@ whether for semantic search or example selection. from langchain.vectorstores import Chroma ``` -For a more detailed walkthrough of the Chroma wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/chroma.html) +For a more detailed walkthrough of the Chroma wrapper, see [this notebook](/docs/integrations/vectorstores/chroma.html) ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/how_to/self_query/chroma_self_query.html). +See a [usage example](/docs/modules/data_connection/retrievers/how_to/self_query/chroma_self_query). ```python from langchain.retrievers import SelfQueryRetriever diff --git a/docs/extras/integrations/providers/clarifai.mdx b/docs/extras/integrations/providers/clarifai.mdx index ffca1495039..883e298e1fd 100644 --- a/docs/extras/integrations/providers/clarifai.mdx +++ b/docs/extras/integrations/providers/clarifai.mdx @@ -25,7 +25,7 @@ from langchain.llms import Clarifai llm = Clarifai(pat=CLARIFAI_PAT, user_id=USER_ID, app_id=APP_ID, model_id=MODEL_ID) ``` -For more details, the docs on the Clarifai LLM wrapper provide a [detailed walkthrough](/docs/modules/model_io/models/llms/integrations/clarifai.html). +For more details, the docs on the Clarifai LLM wrapper provide a [detailed walkthrough](/docs/integrations/llms/clarifai.html). ### Text Embedding Models @@ -37,7 +37,7 @@ There is a Clarifai Embedding model in LangChain, which you can access with: from langchain.embeddings import ClarifaiEmbeddings embeddings = ClarifaiEmbeddings(pat=CLARIFAI_PAT, user_id=USER_ID, app_id=APP_ID, model_id=MODEL_ID) ``` -For more details, the docs on the Clarifai Embeddings wrapper provide a [detailed walthrough](/docs/modules/data_connection/text_embedding/integrations/clarifai.html). +For more details, the docs on the Clarifai Embeddings wrapper provide a [detailed walthrough](/docs/integrations/text_embedding/clarifai.html). ## Vectorstore @@ -49,4 +49,4 @@ You an also add data directly from LangChain as well, and the auto-indexing will from langchain.vectorstores import Clarifai clarifai_vector_db = Clarifai.from_texts(user_id=USER_ID, app_id=APP_ID, texts=texts, pat=CLARIFAI_PAT, number_of_docs=NUMBER_OF_DOCS, metadatas = metadatas) ``` -For more details, the docs on the Clarifai vector store provide a [detailed walthrough](/docs/modules/data_connection/text_embedding/integrations/clarifai.html). +For more details, the docs on the Clarifai vector store provide a [detailed walthrough](/docs/integrations/text_embedding/clarifai.html). diff --git a/docs/extras/integrations/providers/cohere.mdx b/docs/extras/integrations/providers/cohere.mdx index ef13ccad433..768a6b64511 100644 --- a/docs/extras/integrations/providers/cohere.mdx +++ b/docs/extras/integrations/providers/cohere.mdx @@ -15,7 +15,7 @@ Get a [Cohere api key](https://dashboard.cohere.ai/) and set it as an environmen ## LLM There exists an Cohere LLM wrapper, which you can access with -See a [usage example](/docs/modules/model_io/models/llms/integrations/cohere.html). +See a [usage example](/docs/integrations/llms/cohere). ```python from langchain.llms import Cohere @@ -27,11 +27,11 @@ There exists an Cohere Embedding model, which you can access with ```python from langchain.embeddings import CohereEmbeddings ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/cohere.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/text_embedding/cohere.html) ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/cohere-reranker.html). +See a [usage example](/docs/integrations/retrievers/cohere-reranker). ```python from langchain.retrievers.document_compressors import CohereRerank diff --git a/docs/extras/integrations/providers/college_confidential.mdx b/docs/extras/integrations/providers/college_confidential.mdx index f6cb958d41f..6460800f078 100644 --- a/docs/extras/integrations/providers/college_confidential.mdx +++ b/docs/extras/integrations/providers/college_confidential.mdx @@ -9,7 +9,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/college_confidential.html). +See a [usage example](/docs/integrations/document_loaders/college_confidential). ```python from langchain.document_loaders import CollegeConfidentialLoader diff --git a/docs/extras/integrations/providers/confluence.mdx b/docs/extras/integrations/providers/confluence.mdx index 419a96ffafd..da5c323b455 100644 --- a/docs/extras/integrations/providers/confluence.mdx +++ b/docs/extras/integrations/providers/confluence.mdx @@ -15,7 +15,7 @@ See [instructions](https://support.atlassian.com/atlassian-account/docs/manage-a ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/confluence.html). +See a [usage example](/docs/integrations/document_loaders/confluence). ```python from langchain.document_loaders import ConfluenceLoader diff --git a/docs/extras/integrations/providers/ctransformers.mdx b/docs/extras/integrations/providers/ctransformers.mdx index 402b7f16463..282d6ce38c5 100644 --- a/docs/extras/integrations/providers/ctransformers.mdx +++ b/docs/extras/integrations/providers/ctransformers.mdx @@ -54,4 +54,4 @@ llm = CTransformers(model='marella/gpt-2-ggml', config=config) See [Documentation](https://github.com/marella/ctransformers#config) for a list of available parameters. -For a more detailed walkthrough of this, see [this notebook](/docs/modules/model_io/models/llms/integrations/ctransformers.html). +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/llms/ctransformers.html). diff --git a/docs/extras/integrations/providers/datadog_logs.mdx b/docs/extras/integrations/providers/datadog_logs.mdx index 4da581b7c6b..26bca92f1a6 100644 --- a/docs/extras/integrations/providers/datadog_logs.mdx +++ b/docs/extras/integrations/providers/datadog_logs.mdx @@ -12,7 +12,7 @@ We must initialize the loader with the Datadog API key and APP key, and we need ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/datadog_logs.html). +See a [usage example](/docs/integrations/document_loaders/datadog_logs). ```python from langchain.document_loaders import DatadogLogsLoader diff --git a/docs/extras/integrations/providers/dataforseo.mdx b/docs/extras/integrations/providers/dataforseo.mdx index 9bb9fb1c857..9dcde2e4edc 100644 --- a/docs/extras/integrations/providers/dataforseo.mdx +++ b/docs/extras/integrations/providers/dataforseo.mdx @@ -16,7 +16,7 @@ The DataForSEO utility wraps the API. To import this utility, use: from langchain.utilities import DataForSeoAPIWrapper ``` -For a detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/dataforseo.ipynb). +For a detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/dataforseo.ipynb). ### Tool diff --git a/docs/extras/integrations/providers/deeplake.mdx b/docs/extras/integrations/providers/deeplake.mdx index 389a8dd7c23..88bd7688810 100644 --- a/docs/extras/integrations/providers/deeplake.mdx +++ b/docs/extras/integrations/providers/deeplake.mdx @@ -27,4 +27,4 @@ from langchain.vectorstores import DeepLake ``` -For a more detailed walkthrough of the Deep Lake wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/deeplake.html) +For a more detailed walkthrough of the Deep Lake wrapper, see [this notebook](/docs/integrations/vectorstores/deeplake.html) diff --git a/docs/extras/integrations/providers/diffbot.mdx b/docs/extras/integrations/providers/diffbot.mdx index 72c66185b11..8a423c2a728 100644 --- a/docs/extras/integrations/providers/diffbot.mdx +++ b/docs/extras/integrations/providers/diffbot.mdx @@ -11,7 +11,7 @@ Read [instructions](https://docs.diffbot.com/reference/authentication) how to ge ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/diffbot.html). +See a [usage example](/docs/integrations/document_loaders/diffbot). ```python from langchain.document_loaders import DiffbotLoader diff --git a/docs/extras/integrations/providers/discord.mdx b/docs/extras/integrations/providers/discord.mdx index 53aa16380b8..07b5258e88c 100644 --- a/docs/extras/integrations/providers/discord.mdx +++ b/docs/extras/integrations/providers/discord.mdx @@ -23,7 +23,7 @@ with Discord. That email will have a download button using which you would be ab ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/discord.html). +See a [usage example](/docs/integrations/document_loaders/discord). ```python from langchain.document_loaders import DiscordChatLoader diff --git a/docs/extras/integrations/providers/docugami.mdx b/docs/extras/integrations/providers/docugami.mdx index 9050cb04f80..4190bc32dc9 100644 --- a/docs/extras/integrations/providers/docugami.mdx +++ b/docs/extras/integrations/providers/docugami.mdx @@ -13,7 +13,7 @@ pip install lxml ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/docugami.html). +See a [usage example](/docs/integrations/document_loaders/docugami). ```python from langchain.document_loaders import DocugamiLoader diff --git a/docs/extras/integrations/providers/duckdb.mdx b/docs/extras/integrations/providers/duckdb.mdx index a8391c4b68a..9e36b8cbd02 100644 --- a/docs/extras/integrations/providers/duckdb.mdx +++ b/docs/extras/integrations/providers/duckdb.mdx @@ -12,7 +12,7 @@ pip install duckdb ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/duckdb.html). +See a [usage example](/docs/integrations/document_loaders/duckdb). ```python from langchain.document_loaders import DuckDBLoader diff --git a/docs/extras/integrations/providers/elasticsearch.mdx b/docs/extras/integrations/providers/elasticsearch.mdx index 917e8a50787..8df323aa138 100644 --- a/docs/extras/integrations/providers/elasticsearch.mdx +++ b/docs/extras/integrations/providers/elasticsearch.mdx @@ -17,7 +17,7 @@ pip install elasticsearch >The name of the actual ranking function is BM25. The fuller name, Okapi BM25, includes the name of the first system to use it, which was the Okapi information retrieval system, implemented at London's City University in the 1980s and 1990s. BM25 and its newer variants, e.g. BM25F (a version of BM25 that can take document structure and anchor text into account), represent TF-IDF-like retrieval functions used in document retrieval. -See a [usage example](/docs/modules/data_connection/retrievers/integrations/elastic_search_bm25.html). +See a [usage example](/docs/integrations/retrievers/elastic_search_bm25). ```python from langchain.retrievers import ElasticSearchBM25Retriever diff --git a/docs/extras/integrations/providers/evernote.mdx b/docs/extras/integrations/providers/evernote.mdx index e2b228003d5..a52cf5407f0 100644 --- a/docs/extras/integrations/providers/evernote.mdx +++ b/docs/extras/integrations/providers/evernote.mdx @@ -13,7 +13,7 @@ pip install html2text ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/evernote.html). +See a [usage example](/docs/integrations/document_loaders/evernote). ```python from langchain.document_loaders import EverNoteLoader diff --git a/docs/extras/integrations/providers/facebook_chat.mdx b/docs/extras/integrations/providers/facebook_chat.mdx index eb24a29a25d..7d4ebfc1e49 100644 --- a/docs/extras/integrations/providers/facebook_chat.mdx +++ b/docs/extras/integrations/providers/facebook_chat.mdx @@ -14,7 +14,7 @@ pip install pandas ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/facebook_chat.html). +See a [usage example](/docs/integrations/document_loaders/facebook_chat). ```python from langchain.document_loaders import FacebookChatLoader diff --git a/docs/extras/integrations/providers/figma.mdx b/docs/extras/integrations/providers/figma.mdx index 144a46a6873..f76485807cb 100644 --- a/docs/extras/integrations/providers/figma.mdx +++ b/docs/extras/integrations/providers/figma.mdx @@ -14,7 +14,7 @@ The `file key` can be pulled from the URL. https://www.figma.com/file/{filekey} ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/figma.html). +See a [usage example](/docs/integrations/document_loaders/figma). ```python from langchain.document_loaders import FigmaFileLoader diff --git a/docs/extras/integrations/providers/git.mdx b/docs/extras/integrations/providers/git.mdx index 3e24148229d..fb4304ebc08 100644 --- a/docs/extras/integrations/providers/git.mdx +++ b/docs/extras/integrations/providers/git.mdx @@ -12,7 +12,7 @@ pip install GitPython ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/git.html). +See a [usage example](/docs/integrations/document_loaders/git). ```python from langchain.document_loaders import GitLoader diff --git a/docs/extras/integrations/providers/gitbook.mdx b/docs/extras/integrations/providers/gitbook.mdx index 16b7a4e8b8f..fa0283ef50e 100644 --- a/docs/extras/integrations/providers/gitbook.mdx +++ b/docs/extras/integrations/providers/gitbook.mdx @@ -8,7 +8,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/gitbook.html). +See a [usage example](/docs/integrations/document_loaders/gitbook). ```python from langchain.document_loaders import GitbookLoader diff --git a/docs/extras/integrations/providers/golden.mdx b/docs/extras/integrations/providers/golden.mdx index a11dcfd2065..af6ff99abb1 100644 --- a/docs/extras/integrations/providers/golden.mdx +++ b/docs/extras/integrations/providers/golden.mdx @@ -20,7 +20,7 @@ There exists a GoldenQueryAPIWrapper utility which wraps this API. To import thi from langchain.utilities.golden_query import GoldenQueryAPIWrapper ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/golden_query.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/golden_query.html). ### Tool diff --git a/docs/extras/integrations/providers/google_bigquery.mdx b/docs/extras/integrations/providers/google_bigquery.mdx index 53eb7ae187b..e8fd8409cb2 100644 --- a/docs/extras/integrations/providers/google_bigquery.mdx +++ b/docs/extras/integrations/providers/google_bigquery.mdx @@ -13,7 +13,7 @@ pip install google-cloud-bigquery ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/google_bigquery.html). +See a [usage example](/docs/integrations/document_loaders/google_bigquery). ```python from langchain.document_loaders import BigQueryLoader diff --git a/docs/extras/integrations/providers/google_cloud_storage.mdx b/docs/extras/integrations/providers/google_cloud_storage.mdx index 98cf3124ced..3f4798c33d0 100644 --- a/docs/extras/integrations/providers/google_cloud_storage.mdx +++ b/docs/extras/integrations/providers/google_cloud_storage.mdx @@ -14,12 +14,12 @@ pip install google-cloud-storage There are two loaders for the `Google Cloud Storage`: the `Directory` and the `File` loaders. -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/google_cloud_storage_directory.html). +See a [usage example](/docs/integrations/document_loaders/google_cloud_storage_directory). ```python from langchain.document_loaders import GCSDirectoryLoader ``` -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/google_cloud_storage_file.html). +See a [usage example](/docs/integrations/document_loaders/google_cloud_storage_file). ```python from langchain.document_loaders import GCSFileLoader diff --git a/docs/extras/integrations/providers/google_drive.mdx b/docs/extras/integrations/providers/google_drive.mdx index 2ef7cecf8a5..6dae17c2956 100644 --- a/docs/extras/integrations/providers/google_drive.mdx +++ b/docs/extras/integrations/providers/google_drive.mdx @@ -14,7 +14,7 @@ pip install google-api-python-client google-auth-httplib2 google-auth-oauthlib ## Document Loader -See a [usage example and authorizing instructions](/docs/modules/data_connection/document_loaders/integrations/google_drive.html). +See a [usage example and authorizing instructions](/docs/integrations/document_loaders/google_drive.html). ```python diff --git a/docs/extras/integrations/providers/google_search.mdx b/docs/extras/integrations/providers/google_search.mdx index 984aec783c2..717a765caac 100644 --- a/docs/extras/integrations/providers/google_search.mdx +++ b/docs/extras/integrations/providers/google_search.mdx @@ -18,7 +18,7 @@ There exists a GoogleSearchAPIWrapper utility which wraps this API. To import th from langchain.utilities import GoogleSearchAPIWrapper ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/google_search.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/google_search.html). ### Tool diff --git a/docs/extras/integrations/providers/google_serper.mdx b/docs/extras/integrations/providers/google_serper.mdx index 980ee6765c2..8fd535c57f6 100644 --- a/docs/extras/integrations/providers/google_serper.mdx +++ b/docs/extras/integrations/providers/google_serper.mdx @@ -59,7 +59,7 @@ So the final answer is: El Palmar, Spain 'El Palmar, Spain' ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/google_serper.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/google_serper.html). ### Tool diff --git a/docs/extras/integrations/providers/gpt4all.mdx b/docs/extras/integrations/providers/gpt4all.mdx index 96fb1c899f6..72e5145a34b 100644 --- a/docs/extras/integrations/providers/gpt4all.mdx +++ b/docs/extras/integrations/providers/gpt4all.mdx @@ -45,4 +45,4 @@ model("Once upon a time, ", callbacks=callbacks) You can find links to model file downloads in the [pyllamacpp](https://github.com/nomic-ai/pyllamacpp) repository. -For a more detailed walkthrough of this, see [this notebook](/docs/modules/model_io/models/llms/integrations/gpt4all.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/llms/gpt4all.html) diff --git a/docs/extras/integrations/providers/gutenberg.mdx b/docs/extras/integrations/providers/gutenberg.mdx index b060c734b5f..e4421e4d86e 100644 --- a/docs/extras/integrations/providers/gutenberg.mdx +++ b/docs/extras/integrations/providers/gutenberg.mdx @@ -8,7 +8,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/gutenberg.html). +See a [usage example](/docs/integrations/document_loaders/gutenberg). ```python from langchain.document_loaders import GutenbergLoader diff --git a/docs/extras/integrations/providers/hacker_news.mdx b/docs/extras/integrations/providers/hacker_news.mdx index 972bc9327d3..3c8a74b4612 100644 --- a/docs/extras/integrations/providers/hacker_news.mdx +++ b/docs/extras/integrations/providers/hacker_news.mdx @@ -11,7 +11,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/hacker_news.html). +See a [usage example](/docs/integrations/document_loaders/hacker_news). ```python from langchain.document_loaders import HNLoader diff --git a/docs/extras/integrations/providers/hologres.mdx b/docs/extras/integrations/providers/hologres.mdx index 66284efbd36..02b13540dae 100644 --- a/docs/extras/integrations/providers/hologres.mdx +++ b/docs/extras/integrations/providers/hologres.mdx @@ -16,7 +16,7 @@ pip install psycopg2 ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/hologres.html). +See a [usage example](/docs/integrations/vectorstores/hologres). ```python from langchain.vectorstores import Hologres diff --git a/docs/extras/integrations/providers/huggingface.mdx b/docs/extras/integrations/providers/huggingface.mdx index 024bce9f7aa..a752a1b5773 100644 --- a/docs/extras/integrations/providers/huggingface.mdx +++ b/docs/extras/integrations/providers/huggingface.mdx @@ -30,7 +30,7 @@ To use a the wrapper for a model hosted on Hugging Face Hub: ```python from langchain.llms import HuggingFaceHub ``` -For a more detailed walkthrough of the Hugging Face Hub wrapper, see [this notebook](/docs/modules/model_io/models/llms/integrations/huggingface_hub.html) +For a more detailed walkthrough of the Hugging Face Hub wrapper, see [this notebook](/docs/integrations/llms/huggingface_hub.html) ### Embeddings @@ -47,7 +47,7 @@ To use a the wrapper for a model hosted on Hugging Face Hub: ```python from langchain.embeddings import HuggingFaceHubEmbeddings ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/huggingfacehub.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/text_embedding/huggingfacehub.html) ### Tokenizer diff --git a/docs/extras/integrations/providers/ifixit.mdx b/docs/extras/integrations/providers/ifixit.mdx index 27c1622abe9..a4fee5bc01b 100644 --- a/docs/extras/integrations/providers/ifixit.mdx +++ b/docs/extras/integrations/providers/ifixit.mdx @@ -9,7 +9,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/ifixit.html). +See a [usage example](/docs/integrations/document_loaders/ifixit). ```python from langchain.document_loaders import IFixitLoader diff --git a/docs/extras/integrations/providers/imsdb.mdx b/docs/extras/integrations/providers/imsdb.mdx index fbd122f2f08..1e13821ef19 100644 --- a/docs/extras/integrations/providers/imsdb.mdx +++ b/docs/extras/integrations/providers/imsdb.mdx @@ -8,7 +8,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/imsdb.html). +See a [usage example](/docs/integrations/document_loaders/imsdb). ```python diff --git a/docs/extras/integrations/providers/jina.mdx b/docs/extras/integrations/providers/jina.mdx index 7cbe5a41d47..560c2207405 100644 --- a/docs/extras/integrations/providers/jina.mdx +++ b/docs/extras/integrations/providers/jina.mdx @@ -15,7 +15,7 @@ There exists a Jina Embeddings wrapper, which you can access with ```python from langchain.embeddings import JinaEmbeddings ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/jina.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/text_embedding/jina.html) ## Deployment diff --git a/docs/extras/integrations/providers/lancedb.mdx b/docs/extras/integrations/providers/lancedb.mdx index b5bfb425059..6e5ae741153 100644 --- a/docs/extras/integrations/providers/lancedb.mdx +++ b/docs/extras/integrations/providers/lancedb.mdx @@ -20,4 +20,4 @@ To import this vectorstore: from langchain.vectorstores import LanceDB ``` -For a more detailed walkthrough of the LanceDB wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/lancedb.html) +For a more detailed walkthrough of the LanceDB wrapper, see [this notebook](/docs/integrations/vectorstores/lancedb.html) diff --git a/docs/extras/integrations/providers/llamacpp.mdx b/docs/extras/integrations/providers/llamacpp.mdx index 45c161724b1..a7a2f335ec2 100644 --- a/docs/extras/integrations/providers/llamacpp.mdx +++ b/docs/extras/integrations/providers/llamacpp.mdx @@ -15,7 +15,7 @@ There exists a LlamaCpp LLM wrapper, which you can access with ```python from langchain.llms import LlamaCpp ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/model_io/models/llms/integrations/llamacpp.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/llms/llamacpp.html) ### Embeddings @@ -23,4 +23,4 @@ There exists a LlamaCpp Embeddings wrapper, which you can access with ```python from langchain.embeddings import LlamaCppEmbeddings ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/llamacpp.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/text_embedding/llamacpp.html) diff --git a/docs/extras/integrations/providers/marqo.md b/docs/extras/integrations/providers/marqo.md index 5ca64c6da42..d26e08fb13b 100644 --- a/docs/extras/integrations/providers/marqo.md +++ b/docs/extras/integrations/providers/marqo.md @@ -28,4 +28,4 @@ To import this vectorstore: from langchain.vectorstores import Marqo ``` -For a more detailed walkthrough of the Marqo wrapper and some of its unique features, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/marqo.html) +For a more detailed walkthrough of the Marqo wrapper and some of its unique features, see [this notebook](/docs/integrations/vectorstores/marqo.html) diff --git a/docs/extras/integrations/providers/mediawikidump.mdx b/docs/extras/integrations/providers/mediawikidump.mdx index 0efdbd78bc5..03e02a3cc6e 100644 --- a/docs/extras/integrations/providers/mediawikidump.mdx +++ b/docs/extras/integrations/providers/mediawikidump.mdx @@ -23,7 +23,7 @@ pip install -qU mwparserfromhell ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/mediawikidump.html). +See a [usage example](/docs/integrations/document_loaders/mediawikidump). ```python diff --git a/docs/extras/integrations/providers/microsoft_onedrive.mdx b/docs/extras/integrations/providers/microsoft_onedrive.mdx index 76b2d0a131d..b52e29ae9e7 100644 --- a/docs/extras/integrations/providers/microsoft_onedrive.mdx +++ b/docs/extras/integrations/providers/microsoft_onedrive.mdx @@ -10,11 +10,11 @@ First, you need to install a python package. pip install o365 ``` -Then follow instructions [here](/docs/modules/data_connection/document_loaders/integrations/microsoft_onedrive.html). +Then follow instructions [here](/docs/integrations/document_loaders/microsoft_onedrive.html). ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/microsoft_onedrive.html). +See a [usage example](/docs/integrations/document_loaders/microsoft_onedrive). ```python diff --git a/docs/extras/integrations/providers/microsoft_powerpoint.mdx b/docs/extras/integrations/providers/microsoft_powerpoint.mdx index b873b761b3f..0c0c296c3d5 100644 --- a/docs/extras/integrations/providers/microsoft_powerpoint.mdx +++ b/docs/extras/integrations/providers/microsoft_powerpoint.mdx @@ -8,7 +8,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/microsoft_powerpoint.html). +See a [usage example](/docs/integrations/document_loaders/microsoft_powerpoint). ```python diff --git a/docs/extras/integrations/providers/microsoft_word.mdx b/docs/extras/integrations/providers/microsoft_word.mdx index 7c96ff585b0..780333bbea2 100644 --- a/docs/extras/integrations/providers/microsoft_word.mdx +++ b/docs/extras/integrations/providers/microsoft_word.mdx @@ -8,7 +8,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/microsoft_word.html). +See a [usage example](/docs/integrations/document_loaders/microsoft_word). ```python diff --git a/docs/extras/integrations/providers/milvus.mdx b/docs/extras/integrations/providers/milvus.mdx index 7e6747d5b81..d1e7229f474 100644 --- a/docs/extras/integrations/providers/milvus.mdx +++ b/docs/extras/integrations/providers/milvus.mdx @@ -17,4 +17,4 @@ To import this vectorstore: from langchain.vectorstores import Milvus ``` -For a more detailed walkthrough of the Miluvs wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/milvus.html) +For a more detailed walkthrough of the Miluvs wrapper, see [this notebook](/docs/integrations/vectorstores/milvus.html) diff --git a/docs/extras/integrations/providers/modelscope.mdx b/docs/extras/integrations/providers/modelscope.mdx index 239be968f41..c37c5f60c43 100644 --- a/docs/extras/integrations/providers/modelscope.mdx +++ b/docs/extras/integrations/providers/modelscope.mdx @@ -17,4 +17,4 @@ There exists a modelscope Embeddings wrapper, which you can access with from langchain.embeddings import ModelScopeEmbeddings ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/modelscope_hub.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/text_embedding/modelscope_hub.html) diff --git a/docs/extras/integrations/providers/modern_treasury.mdx b/docs/extras/integrations/providers/modern_treasury.mdx index e54f8b7457f..b6eb2d399c4 100644 --- a/docs/extras/integrations/providers/modern_treasury.mdx +++ b/docs/extras/integrations/providers/modern_treasury.mdx @@ -11,7 +11,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/modern_treasury.html). +See a [usage example](/docs/integrations/document_loaders/modern_treasury). ```python diff --git a/docs/extras/integrations/providers/myscale.mdx b/docs/extras/integrations/providers/myscale.mdx index 131af59f96a..c4eec626d44 100644 --- a/docs/extras/integrations/providers/myscale.mdx +++ b/docs/extras/integrations/providers/myscale.mdx @@ -62,4 +62,4 @@ To import this vectorstore: from langchain.vectorstores import MyScale ``` -For a more detailed walkthrough of the MyScale wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/myscale.html) +For a more detailed walkthrough of the MyScale wrapper, see [this notebook](/docs/integrations/vectorstores/myscale.html) diff --git a/docs/extras/integrations/providers/notion.mdx b/docs/extras/integrations/providers/notion.mdx index b364d711eef..216a88c9f9b 100644 --- a/docs/extras/integrations/providers/notion.mdx +++ b/docs/extras/integrations/providers/notion.mdx @@ -12,14 +12,14 @@ All instructions are in examples below. We have two different loaders: `NotionDirectoryLoader` and `NotionDBLoader`. -See a [usage example for the NotionDirectoryLoader](/docs/modules/data_connection/document_loaders/integrations/notion.html). +See a [usage example for the NotionDirectoryLoader](/docs/integrations/document_loaders/notion.html). ```python from langchain.document_loaders import NotionDirectoryLoader ``` -See a [usage example for the NotionDBLoader](/docs/modules/data_connection/document_loaders/integrations/notiondb.html). +See a [usage example for the NotionDBLoader](/docs/integrations/document_loaders/notiondb.html). ```python diff --git a/docs/extras/integrations/providers/obsidian.mdx b/docs/extras/integrations/providers/obsidian.mdx index e36b848e407..e7ab67f3e99 100644 --- a/docs/extras/integrations/providers/obsidian.mdx +++ b/docs/extras/integrations/providers/obsidian.mdx @@ -10,7 +10,7 @@ All instructions are in examples below. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/obsidian.html). +See a [usage example](/docs/integrations/document_loaders/obsidian). ```python diff --git a/docs/extras/integrations/providers/openai.mdx b/docs/extras/integrations/providers/openai.mdx index d4f135a4185..82745c2dfc0 100644 --- a/docs/extras/integrations/providers/openai.mdx +++ b/docs/extras/integrations/providers/openai.mdx @@ -32,7 +32,7 @@ If you are using a model hosted on `Azure`, you should use different wrapper for ```python from langchain.llms import AzureOpenAI ``` -For a more detailed walkthrough of the `Azure` wrapper, see [this notebook](/docs/modules/model_io/models/llms/integrations/azure_openai_example.html) +For a more detailed walkthrough of the `Azure` wrapper, see [this notebook](/docs/integrations/llms/azure_openai_example.html) @@ -41,7 +41,7 @@ For a more detailed walkthrough of the `Azure` wrapper, see [this notebook](/doc ```python from langchain.embeddings import OpenAIEmbeddings ``` -For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/openai.html) +For a more detailed walkthrough of this, see [this notebook](/docs/integrations/text_embedding/openai.html) ## Tokenizer @@ -58,7 +58,7 @@ For a more detailed walkthrough of this, see [this notebook](/docs/modules/data_ ## Chain -See a [usage example](/docs/modules/chains/additional/moderation.html). +See a [usage example](/docs/modules/chains/additional/moderation). ```python from langchain.chains import OpenAIModerationChain @@ -66,7 +66,7 @@ from langchain.chains import OpenAIModerationChain ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/chatgpt_loader.html). +See a [usage example](/docs/integrations/document_loaders/chatgpt_loader). ```python from langchain.document_loaders.chatgpt import ChatGPTLoader @@ -74,7 +74,7 @@ from langchain.document_loaders.chatgpt import ChatGPTLoader ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/chatgpt-plugin.html). +See a [usage example](/docs/integrations/retrievers/chatgpt-plugin). ```python from langchain.retrievers import ChatGPTPluginRetriever diff --git a/docs/extras/integrations/providers/openllm.mdx b/docs/extras/integrations/providers/openllm.mdx index b8e0621cbef..a6ec980f664 100644 --- a/docs/extras/integrations/providers/openllm.mdx +++ b/docs/extras/integrations/providers/openllm.mdx @@ -67,4 +67,4 @@ llm("What is the difference between a duck and a goose? And why there are so man ### Usage For a more detailed walkthrough of the OpenLLM Wrapper, see the -[example notebook](/docs/modules/model_io/models/llms/integrations/openllm.html) +[example notebook](/docs/integrations/llms/openllm.html) diff --git a/docs/extras/integrations/providers/opensearch.mdx b/docs/extras/integrations/providers/opensearch.mdx index 07336c3abff..2761548c818 100644 --- a/docs/extras/integrations/providers/opensearch.mdx +++ b/docs/extras/integrations/providers/opensearch.mdx @@ -18,4 +18,4 @@ To import this vectorstore: from langchain.vectorstores import OpenSearchVectorSearch ``` -For a more detailed walkthrough of the OpenSearch wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/opensearch.html) +For a more detailed walkthrough of the OpenSearch wrapper, see [this notebook](/docs/integrations/vectorstores/opensearch.html) diff --git a/docs/extras/integrations/providers/openweathermap.mdx b/docs/extras/integrations/providers/openweathermap.mdx index 160168d0cfa..fa346cf2bc6 100644 --- a/docs/extras/integrations/providers/openweathermap.mdx +++ b/docs/extras/integrations/providers/openweathermap.mdx @@ -29,7 +29,7 @@ There exists a OpenWeatherMapAPIWrapper utility which wraps this API. To import from langchain.utilities.openweathermap import OpenWeatherMapAPIWrapper ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/openweathermap.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/openweathermap.html). ### Tool diff --git a/docs/extras/integrations/providers/pgvector.mdx b/docs/extras/integrations/providers/pgvector.mdx index ee9f634b8bf..d632a8959b3 100644 --- a/docs/extras/integrations/providers/pgvector.mdx +++ b/docs/extras/integrations/providers/pgvector.mdx @@ -26,4 +26,4 @@ from langchain.vectorstores.pgvector import PGVector ### Usage -For a more detailed walkthrough of the PGVector Wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/pgvector.html) +For a more detailed walkthrough of the PGVector Wrapper, see [this notebook](/docs/integrations/vectorstores/pgvector.html) diff --git a/docs/extras/integrations/providers/pinecone.mdx b/docs/extras/integrations/providers/pinecone.mdx index 773e5c97e0e..c0248b8f759 100644 --- a/docs/extras/integrations/providers/pinecone.mdx +++ b/docs/extras/integrations/providers/pinecone.mdx @@ -19,4 +19,4 @@ whether for semantic search or example selection. from langchain.vectorstores import Pinecone ``` -For a more detailed walkthrough of the Pinecone vectorstore, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/pinecone.html) +For a more detailed walkthrough of the Pinecone vectorstore, see [this notebook](/docs/integrations/vectorstores/pinecone.html) diff --git a/docs/extras/integrations/providers/promptlayer.mdx b/docs/extras/integrations/providers/promptlayer.mdx index f0549657805..fbf283b4d8f 100644 --- a/docs/extras/integrations/providers/promptlayer.mdx +++ b/docs/extras/integrations/providers/promptlayer.mdx @@ -46,4 +46,4 @@ This LLM is identical to the [OpenAI](/docs/ecosystem/integrations/openai.html) - you can add `return_pl_id` when instantializing to return a PromptLayer request id to use [while tracking requests](https://magniv.notion.site/Track-4deee1b1f7a34c1680d085f82567dab9). -PromptLayer also provides native wrappers for [`PromptLayerChatOpenAI`](/docs/modules/model_io/models/chat/integrations/promptlayer_chatopenai.html) and `PromptLayerOpenAIChat` +PromptLayer also provides native wrappers for [`PromptLayerChatOpenAI`](/docs/integrations/chat/promptlayer_chatopenai.html) and `PromptLayerOpenAIChat` diff --git a/docs/extras/integrations/providers/psychic.mdx b/docs/extras/integrations/providers/psychic.mdx index 94f57a8da4b..0bae7e5b21c 100644 --- a/docs/extras/integrations/providers/psychic.mdx +++ b/docs/extras/integrations/providers/psychic.mdx @@ -16,7 +16,7 @@ view these connections from the dashboard and retrieve data using the server-sid 1. Create an account in the [dashboard](https://dashboard.psychic.dev/). 2. Use the [react library](https://docs.psychic.dev/sidekick-link) to add the Psychic link modal to your frontend react app. You will use this to connect the SaaS apps. -3. Once you have created a connection, you can use the `PsychicLoader` by following the [example notebook](/docs/modules/data_connection/document_loaders/integrations/psychic.html) +3. Once you have created a connection, you can use the `PsychicLoader` by following the [example notebook](/docs/integrations/document_loaders/psychic.html) ## Advantages vs Other Document Loaders diff --git a/docs/extras/integrations/providers/qdrant.mdx b/docs/extras/integrations/providers/qdrant.mdx index efc0c1f2332..048c2fe1982 100644 --- a/docs/extras/integrations/providers/qdrant.mdx +++ b/docs/extras/integrations/providers/qdrant.mdx @@ -17,4 +17,4 @@ To import this vectorstore: from langchain.vectorstores import Qdrant ``` -For a more detailed walkthrough of the Qdrant wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/qdrant.html) +For a more detailed walkthrough of the Qdrant wrapper, see [this notebook](/docs/integrations/vectorstores/qdrant.html) diff --git a/docs/extras/integrations/providers/reddit.mdx b/docs/extras/integrations/providers/reddit.mdx index 7d635326c6d..c54fa34832a 100644 --- a/docs/extras/integrations/providers/reddit.mdx +++ b/docs/extras/integrations/providers/reddit.mdx @@ -14,7 +14,7 @@ Make a [Reddit Application](https://www.reddit.com/prefs/apps/) and initialize t ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/reddit.html). +See a [usage example](/docs/integrations/document_loaders/reddit). ```python diff --git a/docs/extras/integrations/providers/redis.mdx b/docs/extras/integrations/providers/redis.mdx index e1f8e0e0031..b7350a847bf 100644 --- a/docs/extras/integrations/providers/redis.mdx +++ b/docs/extras/integrations/providers/redis.mdx @@ -92,7 +92,7 @@ To import this vectorstore: from langchain.vectorstores import Redis ``` -For a more detailed walkthrough of the Redis vectorstore wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/redis.html). +For a more detailed walkthrough of the Redis vectorstore wrapper, see [this notebook](/docs/integrations/vectorstores/redis.html). ### Retriever diff --git a/docs/extras/integrations/providers/roam.mdx b/docs/extras/integrations/providers/roam.mdx index 5f31c8f1020..03fd1d790c5 100644 --- a/docs/extras/integrations/providers/roam.mdx +++ b/docs/extras/integrations/providers/roam.mdx @@ -10,7 +10,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/roam.html). +See a [usage example](/docs/integrations/document_loaders/roam). ```python from langchain.document_loaders import RoamLoader diff --git a/docs/extras/integrations/providers/rockset.mdx b/docs/extras/integrations/providers/rockset.mdx index 477306f46df..bddd05a9137 100644 --- a/docs/extras/integrations/providers/rockset.mdx +++ b/docs/extras/integrations/providers/rockset.mdx @@ -12,7 +12,7 @@ pip install rockset ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/rockset.html). +See a [usage example](/docs/integrations/vectorstores/rockset). ```python from langchain.vectorstores import RocksetDB diff --git a/docs/extras/integrations/providers/runhouse.mdx b/docs/extras/integrations/providers/runhouse.mdx index 478ecd48f51..28b6d7eeb38 100644 --- a/docs/extras/integrations/providers/runhouse.mdx +++ b/docs/extras/integrations/providers/runhouse.mdx @@ -15,7 +15,7 @@ custom LLMs, you can use the `SelfHostedPipeline` parent class. from langchain.llms import SelfHostedPipeline, SelfHostedHuggingFaceLLM ``` -For a more detailed walkthrough of the Self-hosted LLMs, see [this notebook](/docs/modules/model_io/models/llms/integrations/runhouse.html) +For a more detailed walkthrough of the Self-hosted LLMs, see [this notebook](/docs/integrations/llms/runhouse.html) ## Self-hosted Embeddings There are several ways to use self-hosted embeddings with LangChain via Runhouse. @@ -26,4 +26,4 @@ the `SelfHostedEmbedding` class. from langchain.llms import SelfHostedPipeline, SelfHostedHuggingFaceLLM ``` -For a more detailed walkthrough of the Self-hosted Embeddings, see [this notebook](/docs/modules/data_connection/text_embedding/integrations/self-hosted.html) +For a more detailed walkthrough of the Self-hosted Embeddings, see [this notebook](/docs/integrations/text_embedding/self-hosted.html) diff --git a/docs/extras/integrations/providers/sagemaker_endpoint.mdx b/docs/extras/integrations/providers/sagemaker_endpoint.mdx index ede22a2c293..f1585257667 100644 --- a/docs/extras/integrations/providers/sagemaker_endpoint.mdx +++ b/docs/extras/integrations/providers/sagemaker_endpoint.mdx @@ -40,7 +40,7 @@ We have to set up following required parameters of the `SagemakerEndpoint` call: ## LLM -See a [usage example](/docs/modules/model_io/models/llms/integrations/sagemaker.html). +See a [usage example](/docs/integrations/llms/sagemaker). ```python from langchain import SagemakerEndpoint @@ -49,7 +49,7 @@ from langchain.llms.sagemaker_endpoint import LLMContentHandler ## Text Embedding Models -See a [usage example](/docs/modules/data_connection/text_embedding/integrations/sagemaker-endpoint.html). +See a [usage example](/docs/integrations/text_embedding/sagemaker-endpoint). ```python from langchain.embeddings import SagemakerEndpointEmbeddings from langchain.llms.sagemaker_endpoint import ContentHandlerBase diff --git a/docs/extras/integrations/providers/serpapi.mdx b/docs/extras/integrations/providers/serpapi.mdx index 2e7623ae82b..e692492c02c 100644 --- a/docs/extras/integrations/providers/serpapi.mdx +++ b/docs/extras/integrations/providers/serpapi.mdx @@ -17,7 +17,7 @@ There exists a SerpAPI utility which wraps this API. To import this utility: from langchain.utilities import SerpAPIWrapper ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/serpapi.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/serpapi.html). ### Tool diff --git a/docs/extras/integrations/providers/singlestoredb.mdx b/docs/extras/integrations/providers/singlestoredb.mdx index 313b7ccbae6..d22f8b89c8e 100644 --- a/docs/extras/integrations/providers/singlestoredb.mdx +++ b/docs/extras/integrations/providers/singlestoredb.mdx @@ -13,7 +13,7 @@ pip install singlestoredb ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/singlestoredb.html). +See a [usage example](/docs/integrations/vectorstores/singlestoredb). ```python from langchain.vectorstores import SingleStoreDB diff --git a/docs/extras/integrations/providers/sklearn.mdx b/docs/extras/integrations/providers/sklearn.mdx index 8f463110c84..09bd746a5b7 100644 --- a/docs/extras/integrations/providers/sklearn.mdx +++ b/docs/extras/integrations/providers/sklearn.mdx @@ -19,4 +19,4 @@ To import this vectorstore: from langchain.vectorstores import SKLearnVectorStore ``` -For a more detailed walkthrough of the SKLearnVectorStore wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/sklearn.html). +For a more detailed walkthrough of the SKLearnVectorStore wrapper, see [this notebook](/docs/integrations/vectorstores/sklearn.html). diff --git a/docs/extras/integrations/providers/slack.mdx b/docs/extras/integrations/providers/slack.mdx index 2b6eb36c707..778d643160e 100644 --- a/docs/extras/integrations/providers/slack.mdx +++ b/docs/extras/integrations/providers/slack.mdx @@ -10,7 +10,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/slack.html). +See a [usage example](/docs/integrations/document_loaders/slack). ```python from langchain.document_loaders import SlackDirectoryLoader diff --git a/docs/extras/integrations/providers/spreedly.mdx b/docs/extras/integrations/providers/spreedly.mdx index 4e1eb1d8cbc..5790ef2e474 100644 --- a/docs/extras/integrations/providers/spreedly.mdx +++ b/docs/extras/integrations/providers/spreedly.mdx @@ -4,11 +4,11 @@ ## Installation and Setup -See [setup instructions](/docs/modules/data_connection/document_loaders/integrations/spreedly.html). +See [setup instructions](/docs/integrations/document_loaders/spreedly.html). ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/spreedly.html). +See a [usage example](/docs/integrations/document_loaders/spreedly). ```python from langchain.document_loaders import SpreedlyLoader diff --git a/docs/extras/integrations/providers/starrocks.mdx b/docs/extras/integrations/providers/starrocks.mdx index 0c0febacc67..c6a1b65b0b6 100644 --- a/docs/extras/integrations/providers/starrocks.mdx +++ b/docs/extras/integrations/providers/starrocks.mdx @@ -14,7 +14,7 @@ pip install pymysql ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/starrocks.html). +See a [usage example](/docs/integrations/vectorstores/starrocks). ```python from langchain.vectorstores import StarRocks diff --git a/docs/extras/integrations/providers/stripe.mdx b/docs/extras/integrations/providers/stripe.mdx index d1ae469928c..923e77cad2f 100644 --- a/docs/extras/integrations/providers/stripe.mdx +++ b/docs/extras/integrations/providers/stripe.mdx @@ -5,11 +5,11 @@ ## Installation and Setup -See [setup instructions](/docs/modules/data_connection/document_loaders/integrations/stripe.html). +See [setup instructions](/docs/integrations/document_loaders/stripe.html). ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/stripe.html). +See a [usage example](/docs/integrations/document_loaders/stripe). ```python from langchain.document_loaders import StripeLoader diff --git a/docs/extras/integrations/providers/tair.mdx b/docs/extras/integrations/providers/tair.mdx index 75a61c4f804..4bfcd769493 100644 --- a/docs/extras/integrations/providers/tair.mdx +++ b/docs/extras/integrations/providers/tair.mdx @@ -19,4 +19,4 @@ To import this vectorstore: from langchain.vectorstores import Tair ``` -For a more detailed walkthrough of the Tair wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/tair.html) +For a more detailed walkthrough of the Tair wrapper, see [this notebook](/docs/integrations/vectorstores/tair.html) diff --git a/docs/extras/integrations/providers/telegram.mdx b/docs/extras/integrations/providers/telegram.mdx index 8bcd9270ec7..b9a8bec0ea4 100644 --- a/docs/extras/integrations/providers/telegram.mdx +++ b/docs/extras/integrations/providers/telegram.mdx @@ -5,11 +5,11 @@ ## Installation and Setup -See [setup instructions](/docs/modules/data_connection/document_loaders/integrations/telegram.html). +See [setup instructions](/docs/integrations/document_loaders/telegram.html). ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/telegram.html). +See a [usage example](/docs/integrations/document_loaders/telegram). ```python from langchain.document_loaders import TelegramChatFileLoader diff --git a/docs/extras/integrations/providers/tigris.mdx b/docs/extras/integrations/providers/tigris.mdx index 7c69141ea4f..62a53d4714b 100644 --- a/docs/extras/integrations/providers/tigris.mdx +++ b/docs/extras/integrations/providers/tigris.mdx @@ -12,7 +12,7 @@ pip install tigrisdb openapi-schema-pydantic openai tiktoken ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/tigris.html). +See a [usage example](/docs/integrations/vectorstores/tigris). ```python from langchain.vectorstores import Tigris diff --git a/docs/extras/integrations/providers/tomarkdown.mdx b/docs/extras/integrations/providers/tomarkdown.mdx index 95f383ffe78..e311d3ad5c4 100644 --- a/docs/extras/integrations/providers/tomarkdown.mdx +++ b/docs/extras/integrations/providers/tomarkdown.mdx @@ -9,7 +9,7 @@ We need the `API key`. See [instructions how to get it](https://2markdown.com/lo ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/tomarkdown.html). +See a [usage example](/docs/integrations/document_loaders/tomarkdown). ```python from langchain.document_loaders import ToMarkdownLoader diff --git a/docs/extras/integrations/providers/trello.mdx b/docs/extras/integrations/providers/trello.mdx index a8f300e6c76..99bf2cf4cea 100644 --- a/docs/extras/integrations/providers/trello.mdx +++ b/docs/extras/integrations/providers/trello.mdx @@ -10,12 +10,12 @@ pip install py-trello beautifulsoup4 ``` -See [setup instructions](/docs/modules/data_connection/document_loaders/integrations/trello.html). +See [setup instructions](/docs/integrations/document_loaders/trello.html). ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/trello.html). +See a [usage example](/docs/integrations/document_loaders/trello). ```python from langchain.document_loaders import TrelloLoader diff --git a/docs/extras/integrations/providers/twitter.mdx b/docs/extras/integrations/providers/twitter.mdx index 6b9424ddd85..365b996b248 100644 --- a/docs/extras/integrations/providers/twitter.mdx +++ b/docs/extras/integrations/providers/twitter.mdx @@ -14,7 +14,7 @@ We must initialize the loader with the `Twitter API` token, and we need to set u ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/twitter.html). +See a [usage example](/docs/integrations/document_loaders/twitter). ```python from langchain.document_loaders import TwitterTweetLoader diff --git a/docs/extras/integrations/providers/typesense.mdx b/docs/extras/integrations/providers/typesense.mdx index d2c64a0a0ac..55ceb08eafa 100644 --- a/docs/extras/integrations/providers/typesense.mdx +++ b/docs/extras/integrations/providers/typesense.mdx @@ -15,7 +15,7 @@ pip install typesense openapi-schema-pydantic openai tiktoken ## Vector Store -See a [usage example](/docs/modules/data_connection/vectorstores/integrations/typesense.html). +See a [usage example](/docs/integrations/vectorstores/typesense). ```python from langchain.vectorstores import Typesense diff --git a/docs/extras/integrations/providers/vespa.mdx b/docs/extras/integrations/providers/vespa.mdx index b92bf2f7ad4..7796fde96d7 100644 --- a/docs/extras/integrations/providers/vespa.mdx +++ b/docs/extras/integrations/providers/vespa.mdx @@ -14,7 +14,7 @@ pip install pyvespa ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/vespa.html). +See a [usage example](/docs/integrations/retrievers/vespa). ```python from langchain.retrievers import VespaRetriever diff --git a/docs/extras/integrations/providers/weather.mdx b/docs/extras/integrations/providers/weather.mdx index ca661a5ab23..20623489c40 100644 --- a/docs/extras/integrations/providers/weather.mdx +++ b/docs/extras/integrations/providers/weather.mdx @@ -14,7 +14,7 @@ We must set up the `OpenWeatherMap API token`. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/weather.html). +See a [usage example](/docs/integrations/document_loaders/weather). ```python from langchain.document_loaders import WeatherDataLoader diff --git a/docs/extras/integrations/providers/weaviate.mdx b/docs/extras/integrations/providers/weaviate.mdx index 97a3f2654ed..1c570948ab5 100644 --- a/docs/extras/integrations/providers/weaviate.mdx +++ b/docs/extras/integrations/providers/weaviate.mdx @@ -30,4 +30,4 @@ To import this vectorstore: from langchain.vectorstores import Weaviate ``` -For a more detailed walkthrough of the Weaviate wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/weaviate.html) +For a more detailed walkthrough of the Weaviate wrapper, see [this notebook](/docs/integrations/vectorstores/weaviate.html) diff --git a/docs/extras/integrations/providers/whatsapp.mdx b/docs/extras/integrations/providers/whatsapp.mdx index e570102354a..524945adfa3 100644 --- a/docs/extras/integrations/providers/whatsapp.mdx +++ b/docs/extras/integrations/providers/whatsapp.mdx @@ -11,7 +11,7 @@ There isn't any special setup for it. ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/whatsapp_chat.html). +See a [usage example](/docs/integrations/document_loaders/whatsapp_chat). ```python from langchain.document_loaders import WhatsAppChatLoader diff --git a/docs/extras/integrations/providers/wikipedia.mdx b/docs/extras/integrations/providers/wikipedia.mdx index 6fa1fe46a0e..b976dbc9994 100644 --- a/docs/extras/integrations/providers/wikipedia.mdx +++ b/docs/extras/integrations/providers/wikipedia.mdx @@ -13,7 +13,7 @@ pip install wikipedia ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/wikipedia.html). +See a [usage example](/docs/integrations/document_loaders/wikipedia). ```python from langchain.document_loaders import WikipediaLoader @@ -21,7 +21,7 @@ from langchain.document_loaders import WikipediaLoader ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/wikipedia.html). +See a [usage example](/docs/integrations/retrievers/wikipedia). ```python from langchain.retrievers import WikipediaRetriever diff --git a/docs/extras/integrations/providers/wolfram_alpha.mdx b/docs/extras/integrations/providers/wolfram_alpha.mdx index f631f9612dd..5c98a52be45 100644 --- a/docs/extras/integrations/providers/wolfram_alpha.mdx +++ b/docs/extras/integrations/providers/wolfram_alpha.mdx @@ -25,7 +25,7 @@ There exists a WolframAlphaAPIWrapper utility which wraps this API. To import th from langchain.utilities.wolfram_alpha import WolframAlphaAPIWrapper ``` -For a more detailed walkthrough of this wrapper, see [this notebook](/docs/modules/agents/tools/integrations/wolfram_alpha.html). +For a more detailed walkthrough of this wrapper, see [this notebook](/docs/integrations/tools/wolfram_alpha.html). ### Tool diff --git a/docs/extras/integrations/providers/youtube.mdx b/docs/extras/integrations/providers/youtube.mdx index 66a12e53690..c0e004df889 100644 --- a/docs/extras/integrations/providers/youtube.mdx +++ b/docs/extras/integrations/providers/youtube.mdx @@ -9,12 +9,12 @@ pip install youtube-transcript-api pip install pytube ``` -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/youtube_transcript.html). +See a [usage example](/docs/integrations/document_loaders/youtube_transcript). ## Document Loader -See a [usage example](/docs/modules/data_connection/document_loaders/integrations/youtube_transcript.html). +See a [usage example](/docs/integrations/document_loaders/youtube_transcript). ```python from langchain.document_loaders import YoutubeLoader diff --git a/docs/extras/integrations/providers/zep.mdx b/docs/extras/integrations/providers/zep.mdx index 42b9b18d18c..9c224d40cd9 100644 --- a/docs/extras/integrations/providers/zep.mdx +++ b/docs/extras/integrations/providers/zep.mdx @@ -21,7 +21,7 @@ pip install zep_python ## Retriever -See a [usage example](/docs/modules/data_connection/retrievers/integrations/zep_memorystore.html). +See a [usage example](/docs/integrations/retrievers/zep_memorystore). ```python from langchain.retrievers import ZepRetriever diff --git a/docs/extras/integrations/providers/zilliz.mdx b/docs/extras/integrations/providers/zilliz.mdx index 5f5d39207d9..e37123eb947 100644 --- a/docs/extras/integrations/providers/zilliz.mdx +++ b/docs/extras/integrations/providers/zilliz.mdx @@ -19,4 +19,4 @@ whether for semantic search or example selection. from langchain.vectorstores import Milvus ``` -For a more detailed walkthrough of the Miluvs wrapper, see [this notebook](/docs/modules/data_connection/vectorstores/integrations/zilliz.html) +For a more detailed walkthrough of the Miluvs wrapper, see [this notebook](/docs/integrations/vectorstores/zilliz.html) diff --git a/docs/extras/integrations/tools/apify.ipynb b/docs/extras/integrations/tools/apify.ipynb index 48e1c221035..d5cc8571d2d 100644 --- a/docs/extras/integrations/tools/apify.ipynb +++ b/docs/extras/integrations/tools/apify.ipynb @@ -72,7 +72,7 @@ "source": [ "Then run the Actor, wait for it to finish, and fetch its results from the Apify dataset into a LangChain document loader.\n", "\n", - "Note that if you already have some results in an Apify dataset, you can load them directly using `ApifyDatasetLoader`, as shown in [this notebook](/docs/modules/data_connection/document_loaders/integrations/apify_dataset.html). In that notebook, you'll also find the explanation of the `dataset_mapping_function`, which is used to map fields from the Apify dataset records to LangChain `Document` fields." + "Note that if you already have some results in an Apify dataset, you can load them directly using `ApifyDatasetLoader`, as shown in [this notebook](/docs/integrations/document_loaders/apify_dataset.html). In that notebook, you'll also find the explanation of the `dataset_mapping_function`, which is used to map fields from the Apify dataset records to LangChain `Document` fields." ] }, { diff --git a/docs/extras/integrations/vectorstores/redis.ipynb b/docs/extras/integrations/vectorstores/redis.ipynb index d8b352fea89..972af86347c 100644 --- a/docs/extras/integrations/vectorstores/redis.ipynb +++ b/docs/extras/integrations/vectorstores/redis.ipynb @@ -12,7 +12,7 @@ "\n", "As database either Redis standalone server or Redis Sentinel HA setups are supported for connections with the \"redis_url\"\n", "parameter. More information about the different formats of the redis connection url can be found in the LangChain\n", - "[Redis Readme](/docs/modules/data_connection/vectorstores/integrations/redis) file" + "[Redis Readme](/docs/integrations/vectorstores/redis) file" ] }, { diff --git a/docs/extras/modules/data_connection/retrievers/self_query/myscale_self_query.ipynb b/docs/extras/modules/data_connection/retrievers/self_query/myscale_self_query.ipynb index 160db7c0204..f43ac9fc3e2 100644 --- a/docs/extras/modules/data_connection/retrievers/self_query/myscale_self_query.ipynb +++ b/docs/extras/modules/data_connection/retrievers/self_query/myscale_self_query.ipynb @@ -22,7 +22,7 @@ "metadata": {}, "source": [ "## Creating a MyScale vectorstore\n", - "MyScale has already been integrated to LangChain for a while. So you can follow [this notebook](/docs/modules/data_connection/vectorstores/integrations/myscale.ipynb) to create your own vectorstore for a self-query retriever.\n", + "MyScale has already been integrated to LangChain for a while. So you can follow [this notebook](/docs/integrations/vectorstores/myscale.ipynb) to create your own vectorstore for a self-query retriever.\n", "\n", "NOTE: All self-query retrievers requires you to have `lark` installed (`pip install lark`). We use `lark` for grammar definition. Before you proceed to the next step, we also want to remind you that `clickhouse-connect` is also needed to interact with your MyScale backend." ] diff --git a/docs/extras/use_cases/question_answering/index.mdx b/docs/extras/use_cases/question_answering/index.mdx index 8471a6a8181..6ee0611380c 100644 --- a/docs/extras/use_cases/question_answering/index.mdx +++ b/docs/extras/use_cases/question_answering/index.mdx @@ -268,7 +268,7 @@ The popularity of [PrivateGPT](https://github.com/imartinez/privateGPT) and [GPT LangChain has integrations with many open source LLMs that can be run locally. -Using `GPT4All` is as simple as [downloading the binary]((https://python.langchain.com/docs/modules/model_io/models/llms/integrations/gpt4all)) and then: +Using `GPT4All` is as simple as [downloading the binary]((https://python.langchain.com/docs/integrations/llms/gpt4all)) and then: ```python diff --git a/docs/extras/use_cases/question_answering/local_retrieval_qa.ipynb b/docs/extras/use_cases/question_answering/local_retrieval_qa.ipynb index 6deaffc45c6..668b58166fa 100644 --- a/docs/extras/use_cases/question_answering/local_retrieval_qa.ipynb +++ b/docs/extras/use_cases/question_answering/local_retrieval_qa.ipynb @@ -205,7 +205,7 @@ "id": "fcf81052", "metadata": {}, "source": [ - "Setting model parameters as noted in the [llama.cpp docs](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/llamacpp)." + "Setting model parameters as noted in the [llama.cpp docs](https://python.langchain.com/docs/integrations/llms/llamacpp)." ] }, { @@ -304,7 +304,7 @@ "id": "3831b16a", "metadata": {}, "source": [ - "Note that these indicate that [Metal was enabled properly](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/llamacpp):\n", + "Note that these indicate that [Metal was enabled properly](https://python.langchain.com/docs/integrations/llms/llamacpp):\n", "\n", "```\n", "ggml_metal_init: allocating\n", @@ -377,7 +377,7 @@ "\n", "Similarly, we can use `GPT4All`.\n", "\n", - "[Download the GPT4All model binary](https://python.langchain.com/docs/modules/model_io/models/llms/integrations/gpt4all).\n", + "[Download the GPT4All model binary](https://python.langchain.com/docs/integrations/llms/gpt4all).\n", "\n", "The Model Explorer on the [GPT4All](https://gpt4all.io/index.html) is a great way to choose and download a model.\n", "\n", diff --git a/docs/snippets/modules/data_connection/document_loaders/how_to/file_directory.mdx b/docs/snippets/modules/data_connection/document_loaders/how_to/file_directory.mdx index e68c727d626..5fd585564c1 100644 --- a/docs/snippets/modules/data_connection/document_loaders/how_to/file_directory.mdx +++ b/docs/snippets/modules/data_connection/document_loaders/how_to/file_directory.mdx @@ -1,4 +1,4 @@ -Under the hood, by default this uses the [UnstructuredLoader](/docs/modules/data_connection/document_loaders/integrations/unstructured_file.html) +Under the hood, by default this uses the [UnstructuredLoader](/docs/integrations/document_loaders/unstructured_file.html) ```python from langchain.document_loaders import DirectoryLoader