Increase default max iterations for research chat director to 5

This commit is contained in:
Debanjum Singh Solanky
2024-10-10 02:22:24 -07:00
parent 1e390325d2
commit 284c8c331b

View File

@@ -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()