From 284c8c331b14218e2e125034aef9b6b5525e31f4 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Thu, 10 Oct 2024 02:22:24 -0700 Subject: [PATCH] Increase default max iterations for research chat director to 5 --- src/khoj/routers/research.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/khoj/routers/research.py b/src/khoj/routers/research.py index de47419a..6f479a77 100644 --- a/src/khoj/routers/research.py +++ b/src/khoj/routers/research.py @@ -133,7 +133,7 @@ async def execute_information_collection( file_filters: List[str] = [], ): current_iteration = 0 - MAX_ITERATIONS = 2 + MAX_ITERATIONS = 5 previous_iterations: List[InformationCollectionIteration] = [] while current_iteration < MAX_ITERATIONS: online_results: Dict = dict()