From fd1ef45360e32ce43f969cbbdb2e4d54f9942733 Mon Sep 17 00:00:00 2001 From: Aman Date: Tue, 5 Nov 2024 06:31:02 -0800 Subject: [PATCH] Changed the total number of retrieved documents from 10 to 6. --- flask_app/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_app/application.py b/flask_app/application.py index da37cf5..fb701c8 100644 --- a/flask_app/application.py +++ b/flask_app/application.py @@ -366,7 +366,7 @@ async def answer(): formatted_question += question - response = answer_prompt(formatted_question, 5) + response = answer_prompt(formatted_question, 3) # Get the answer returned by the LLM main_response = response["answer"]