From 5c1d46ade798abcfcb889c33106a13d6e54f0578 Mon Sep 17 00:00:00 2001 From: Yoav Farhi Date: Thu, 13 Jul 2023 20:47:49 +0300 Subject: [PATCH] Update the actual number of results used in generating the final answer (#587) The comment mentions 20, but it actually uses 5 --- examples/Question_answering_using_a_search_API.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Question_answering_using_a_search_API.ipynb b/examples/Question_answering_using_a_search_API.ipynb index bf3f2b86..ca333cbb 100644 --- a/examples/Question_answering_using_a_search_API.ipynb +++ b/examples/Question_answering_using_a_search_API.ipynb @@ -448,7 +448,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Awesome! These results look a lot more relevant to our original query. Now, let's use the top 20 results to generate a final answer.\n", + "Awesome! These results look a lot more relevant to our original query. Now, let's use the top 5 results to generate a final answer.\n", "\n", "## 3. Answer\n" ]