refactor: remove lru_cache decorator from create_vector_engine to remove runtime execution side-effects

This commit is contained in:
Daulet Amirkhanov 2025-11-18 23:51:26 +00:00
parent b57e27b51e
commit 4c793319fe

View file

@ -1,10 +1,6 @@
from .supported_databases import supported_databases
from .embeddings import get_embedding_engine
from functools import lru_cache
@lru_cache
def create_vector_engine(
vector_db_provider: str,
vector_db_url: str,