diff --git a/docs/index.rst b/docs/index.rst index ec1a46af2..b1eef577e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -51,6 +51,8 @@ These modules are, in increasing order of complexity: - `LLMs <./modules/llms.html>`_: This includes a generic interface for all LLMs, and common utilities for working with LLMs. +- `Document Loaders <./modules/document_loaders.html>`_: This includes a standard interface for loading documents, as well as specific integrations to all types of text data sources. + - `Utils <./modules/utils.html>`_: Language models are often more powerful when interacting with other sources of knowledge or computation. This can include Python REPLs, embeddings, search engines, and more. LangChain provides a large collection of common utils to use in your application. - `Chains <./modules/chains.html>`_: Chains go beyond just a single LLM call, and are sequences of calls (whether to an LLM or a different utility). LangChain provides a standard interface for chains, lots of integrations with other tools, and end-to-end chains for common applications. @@ -68,6 +70,7 @@ These modules are, in increasing order of complexity: ./modules/prompts.md ./modules/llms.md + ./modules/document_loaders.md ./modules/utils.md ./modules/chains.md ./modules/agents.md diff --git a/docs/modules/document_loaders/examples/export_format.png b/docs/modules/document_loaders/examples/export_format.png deleted file mode 100644 index 008db3eb8..000000000 Binary files a/docs/modules/document_loaders/examples/export_format.png and /dev/null differ diff --git a/docs/modules/document_loaders/examples/export_notion.png b/docs/modules/document_loaders/examples/export_notion.png deleted file mode 100644 index 1c7411c27..000000000 Binary files a/docs/modules/document_loaders/examples/export_notion.png and /dev/null differ diff --git a/docs/modules/document_loaders/examples/notion.ipynb b/docs/modules/document_loaders/examples/notion.ipynb index d4014b97d..f1364f347 100644 --- a/docs/modules/document_loaders/examples/notion.ipynb +++ b/docs/modules/document_loaders/examples/notion.ipynb @@ -14,12 +14,8 @@ "\n", "Export your dataset from Notion. You can do this by clicking on the three dots in the upper right hand corner and then clicking `Export`.\n", "\n", - "\"export\"\n", - "\n", "When exporting, make sure to select the `Markdown & CSV` format option.\n", "\n", - "\"export-format\"\n", - "\n", "This will produce a `.zip` file in your Downloads folder. Move the `.zip` file into this repository.\n", "\n", "Run the following command to unzip the zip file (replace the `Export...` with your own file name as needed).\n",