ForcePilot/src/__init__.py

12 lines
376 B
Python
Raw Normal View History

2025-03-08 20:26:00 +08:00
from dotenv import load_dotenv
load_dotenv("src/.env", override=True)
2025-03-16 01:11:13 +08:00
2025-05-24 11:29:45 +08:00
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