From d5d4c0a172395fc0221b5e3d165f38182f058a69 Mon Sep 17 00:00:00 2001 From: David Peterson <34923485+Haste171@users.noreply.github.com> Date: Tue, 16 May 2023 20:14:00 -0500 Subject: [PATCH] Update summarize.ipynb (#4529) # Update order in which tasks are stated (logically correct) Fixes the order in which steps are placed under titles. @vowelparrot --- .../chains/index_examples/summarize.ipynb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/modules/chains/index_examples/summarize.ipynb b/docs/modules/chains/index_examples/summarize.ipynb index fc5db54ec0a..6b5357c4761 100644 --- a/docs/modules/chains/index_examples/summarize.ipynb +++ b/docs/modules/chains/index_examples/summarize.ipynb @@ -60,6 +60,15 @@ "docs = [Document(page_content=t) for t in texts[:3]]" ] }, + { + "cell_type": "markdown", + "id": "21284c47", + "metadata": {}, + "source": [ + "## Quickstart\n", + "If you just want to get started as quickly as possible, this is the recommended way to do it:" + ] + }, { "cell_type": "code", "execution_count": 4, @@ -70,15 +79,6 @@ "from langchain.chains.summarize import load_summarize_chain" ] }, - { - "cell_type": "markdown", - "id": "21284c47", - "metadata": {}, - "source": [ - "## Quickstart\n", - "If you just want to get started as quickly as possible, this is the recommended way to do it:" - ] - }, { "cell_type": "code", "execution_count": 7,