7 lines
269 B
Python
7 lines
269 B
Python
from db import get_sqlite_engine, get_prompt_tinydb, get_all_dataset
|
|
from tools import scan_docs_directory
|
|
|
|
prompt_store = get_prompt_tinydb("workdir")
|
|
sql_engine = get_sqlite_engine("workdir")
|
|
docs = scan_docs_directory("workdir")
|
|
datasets = get_all_dataset("workdir") |