From 53dc15714584f742ef72b96376a75680cf45b6ef Mon Sep 17 00:00:00 2001 From: Tim Asp <707699+timothyasp@users.noreply.github.com> Date: Thu, 13 Apr 2023 10:54:40 -0700 Subject: [PATCH] [Docs] minor fixes to loaders links and rst warnings (#2846) The doc loaders index was picking up a bunch of subheadings because I mistakenly made the MD titles H1s. Fixed that. also the easy minor warnings from docs_build --- docs/gallery.rst | 4 ++-- docs/modules/indexes/document_loaders/examples/csv.ipynb | 2 +- docs/modules/indexes/document_loaders/examples/web_base.ipynb | 4 ++-- docs/use_cases/evaluation.rst | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/gallery.rst b/docs/gallery.rst index 8eae3eedab..0725fdb2ec 100644 --- a/docs/gallery.rst +++ b/docs/gallery.rst @@ -1,5 +1,5 @@ LangChain Gallery -============= +================= Lots of people have built some pretty awesome stuff with LangChain. This is a collection of our favorites. @@ -223,7 +223,7 @@ Open Source Answer questions about the documentation of any project Misc. Colab Notebooks -~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~ .. panels:: :body: text-center diff --git a/docs/modules/indexes/document_loaders/examples/csv.ipynb b/docs/modules/indexes/document_loaders/examples/csv.ipynb index 6d0fecd9f2..5b43f39d49 100644 --- a/docs/modules/indexes/document_loaders/examples/csv.ipynb +++ b/docs/modules/indexes/document_loaders/examples/csv.ipynb @@ -106,7 +106,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Specify a column to be used identify the document source\n", + "## Specify a column to be used identify the document source\n", "\n", "Use the `source_column` argument to specify a column to be set as the source for the document created from each row. Otherwise `file_path` will be used as the source for all documents created from the csv file.\n", "\n", diff --git a/docs/modules/indexes/document_loaders/examples/web_base.ipynb b/docs/modules/indexes/document_loaders/examples/web_base.ipynb index 9b3feff19c..d500e77816 100644 --- a/docs/modules/indexes/document_loaders/examples/web_base.ipynb +++ b/docs/modules/indexes/document_loaders/examples/web_base.ipynb @@ -89,7 +89,7 @@ "id": "150988e6", "metadata": {}, "source": [ - "# Loading multiple webpages\n", + "## Loading multiple webpages\n", "\n", "You can also load multiple webpages at once by passing in a list of urls to the loader. This will return a list of documents in the same order as the urls passed in." ] @@ -123,7 +123,7 @@ "id": "641be294", "metadata": {}, "source": [ - "## Load multiple urls concurrently\n", + "### Load multiple urls concurrently\n", "\n", "You can speed up the scraping process by scraping and parsing multiple urls concurrently.\n", "\n", diff --git a/docs/use_cases/evaluation.rst b/docs/use_cases/evaluation.rst index 60e0da7ed1..66bc26337d 100644 --- a/docs/use_cases/evaluation.rst +++ b/docs/use_cases/evaluation.rst @@ -1,5 +1,5 @@ Evaluation -============== +========== .. note:: `Conceptual Guide `_ @@ -83,7 +83,7 @@ The existing examples we have are: Other Examples ------------- +-------------- In addition, we also have some more generic resources for evaluation.