From 96624c2355ef6a93e0c42376c30809aa5153b6e9 Mon Sep 17 00:00:00 2001 From: kyteinsky Date: Wed, 17 Jun 2026 11:52:24 +0530 Subject: [PATCH] chore: remove unused code Signed-off-by: kyteinsky --- context_chat_backend/controller.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/context_chat_backend/controller.py b/context_chat_backend/controller.py index 5fbb79d5..63766aae 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: