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 fc5db54e..6b5357c4 100644 --- a/docs/modules/chains/index_examples/summarize.ipynb +++ b/docs/modules/chains/index_examples/summarize.ipynb @@ -61,22 +61,22 @@ ] }, { - "cell_type": "code", - "execution_count": 4, - "id": "27989fc4", + "cell_type": "markdown", + "id": "21284c47", "metadata": {}, - "outputs": [], "source": [ - "from langchain.chains.summarize import load_summarize_chain" + "## Quickstart\n", + "If you just want to get started as quickly as possible, this is the recommended way to do it:" ] }, { - "cell_type": "markdown", - "id": "21284c47", + "cell_type": "code", + "execution_count": 4, + "id": "27989fc4", "metadata": {}, + "outputs": [], "source": [ - "## Quickstart\n", - "If you just want to get started as quickly as possible, this is the recommended way to do it:" + "from langchain.chains.summarize import load_summarize_chain" ] }, {