From 47345d9236bdd3057a72bbf5c9fdbf2a3e1508ec Mon Sep 17 00:00:00 2001 From: Swapna Lekkala Date: Mon, 6 Oct 2025 16:51:50 -0700 Subject: [PATCH] minor change --- .../providers/utils/memory/openai_vector_store_mixin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_stack/providers/utils/memory/openai_vector_store_mixin.py b/llama_stack/providers/utils/memory/openai_vector_store_mixin.py index 18c22adc6..0d0aa25a4 100644 --- a/llama_stack/providers/utils/memory/openai_vector_store_mixin.py +++ b/llama_stack/providers/utils/memory/openai_vector_store_mixin.py @@ -53,8 +53,8 @@ logger = get_logger(name=__name__, category="providers::utils") # Constants for OpenAI vector stores CHUNK_MULTIPLIER = 5 FILE_BATCH_CLEANUP_INTERVAL_SECONDS = 24 * 60 * 60 # 1 day in seconds -MAX_CONCURRENT_FILES_PER_BATCH = 1 # Maximum concurrent file processing within a batch -FILE_BATCH_CHUNK_SIZE = 5 # Process files in chunks of this size +MAX_CONCURRENT_FILES_PER_BATCH = 3 # Maximum concurrent file processing within a batch +FILE_BATCH_CHUNK_SIZE = 10 # Process files in chunks of this size VERSION = "v3" VECTOR_DBS_PREFIX = f"vector_dbs:{VERSION}::"