diff --git a/context_chat_backend/controller.py b/context_chat_backend/controller.py index 5fbb79d..63766aa 100644 --- a/context_chat_backend/controller.py +++ b/context_chat_backend/controller.py @@ -163,16 +163,6 @@ async def lifespan(app: FastAPI): vectordb_loader = VectorDBLoader(app_config) -# locks and semaphores - -# sequential prompt processing for in-house LLMs (non-nc_texttotext) -llm_lock = threading.Lock() - -# lock to update the sources dict currently being processed -index_lock = threading.Lock() -_indexing = {} - - # middlewares if not app_config.disable_aaa: