12 lines
376 B
Python
12 lines
376 B
Python
from dotenv import load_dotenv
|
|
|
|
load_dotenv("src/.env", override=True)
|
|
|
|
from concurrent.futures import ThreadPoolExecutor # noqa: E402
|
|
from src.config import config as config # noqa: E402
|
|
from src.knowledge import knowledge_base as knowledge_base # noqa: E402
|
|
from src.knowledge import graph_base as graph_base # noqa: E402
|
|
|
|
|
|
executor = ThreadPoolExecutor() # noqa: E402
|