Spaces:
Running
Running
import logging | |
import os | |
import langchain | |
import tempfile | |
import shutil | |
# 是否显示详细日志 | |
log_verbose = False | |
langchain.verbose = False | |
# 通常情况下不需要更改以下内容 | |
# 日志格式 | |
LOG_FORMAT = "%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s" | |
logger = logging.getLogger() | |
logger.setLevel(logging.INFO) | |
logging.basicConfig(format=LOG_FORMAT) | |
# 日志存储路径 | |
LOG_PATH = os.path.join(os.path.dirname(os.path.dirname(__file__)), "logs") | |
if not os.path.exists(LOG_PATH): | |
os.mkdir(LOG_PATH) | |
# 临时文件目录,主要用于文件对话 | |
BASE_TEMP_DIR = os.path.join(tempfile.gettempdir(), "chatchat") | |
try: | |
shutil.rmtree(BASE_TEMP_DIR) | |
except Exception: | |
pass | |
os.makedirs(BASE_TEMP_DIR, exist_ok=True) | |