Spaces:
Sleeping
Sleeping
File size: 209 Bytes
fdb6484 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import os
from dotenv import load_dotenv
from rag_app.database.db_handler import DataBaseHandler
load_dotenv()
sqlite_file_name = os.getenv('SOURCES_CACHE')
db = DataBaseHandler()
db.create_all_tables()
|