22 lines
558 B
Python
22 lines
558 B
Python
from dotenv import load_dotenv
|
|
|
|
load_dotenv(".env", override=True)
|
|
|
|
import os # noqa: E402
|
|
from concurrent.futures import ThreadPoolExecutor # noqa: E402
|
|
|
|
from yuxi.config import config as config # noqa: E402
|
|
|
|
__version__ = "0.6.0-dev2"
|
|
|
|
if os.getenv("YUXI_SKIP_APP_INIT") != "1":
|
|
from yuxi.knowledge import graph_base as graph_base # noqa: E402
|
|
from yuxi.knowledge import knowledge_base as knowledge_base # noqa: E402
|
|
|
|
executor = ThreadPoolExecutor() # noqa: E402
|
|
|
|
|
|
def get_version():
|
|
"""Return the Yuxi version."""
|
|
return __version__
|