From d924178cfd6c4f7c3c0a21a246e4c93d0f3b81ee Mon Sep 17 00:00:00 2001 From: pakurhade-equinix Date: Fri, 5 Jun 2026 15:45:44 -0700 Subject: [PATCH] Increase MAX_RESULTS to 7 and MAX_HISTORY to 3 --- backend/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/config.py b/backend/config.py index 971dfc9..515049c 100644 --- a/backend/config.py +++ b/backend/config.py @@ -20,8 +20,8 @@ class Config: # Document processing settings CHUNK_SIZE: int = 800 # Size of text chunks for vector storage CHUNK_OVERLAP: int = 100 # Characters to overlap between chunks - MAX_RESULTS: int = 5 # Maximum search results to return - MAX_HISTORY: int = 2 # Number of conversation messages to remember + MAX_RESULTS: int = 7 # Maximum search results to return + MAX_HISTORY: int = 3 # Number of conversation messages to remember # Database paths CHROMA_PATH: str = "./chroma_db" # ChromaDB storage location