mini-rag / src /models /BaseDataModel.py
mustaphaelkady's picture
Clean deploy mini-rag to Hugging Face
338036b
Raw
History Blame Contribute Delete
250 Bytes
# help us to set settings to project
from helpers.config import get_settings, Settings
class BaseDataModel:
def __init__(self, db_client: object):
self.db_client = db_client
self.app_settings = get_settings()