Skip to content

Commit

Permalink
update docs (langchain-ai#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
hwchase17 authored and zachschillaci27 committed Mar 8, 2023
1 parent 74402df commit 9f8bbde
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
3 changes: 3 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
Binary file not shown.
Binary file not shown.
4 changes: 0 additions & 4 deletions docs/modules/document_loaders/examples/notion.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
"<img src=\"export_notion.png\" alt=\"export\" width=\"200\"/>\n",
"\n",
"When exporting, make sure to select the `Markdown & CSV` format option.\n",
"\n",
"<img src=\"export_format.png\" alt=\"export-format\" width=\"200\"/>\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",
Expand Down

0 comments on commit 9f8bbde

Please sign in to comment.