""" Deprecated: This package is being phased out. Import from app.core and app.utils instead. """ from app.core.paths import ROOT_PATH, MODEL_PATH from app.utils.embeddings import get_embedding_model from app.utils.preprocessing import lowercase, tokenization, preprocess, normalize from app.utils.constants import STOPWORDS from app.prompts.system_prompts import VGEC_ASSISTANT_PROMPT as SYSTEM_PROMPT from app.utils.document_helpers import get_references __all__ = [ "ROOT_PATH", "MODEL_PATH", "get_embedding_model", "lowercase", "tokenization", "preprocess", "normalize", "STOPWORDS", "SYSTEM_PROMPT", "get_references", ]