Timothy Jaeryang Baek 1 月之前
父节点
当前提交
43aa23ea77
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      backend/open_webui/env.py

+ 2 - 2
backend/open_webui/env.py

@@ -18,10 +18,10 @@ from open_webui.constants import ERROR_MESSAGES
 ####################################
 
 # Use .resolve() to get the canonical path, removing any '..' or '.' components
-_this_file_path_resolved = Path(__file__).resolve()
+ENV_FILE_PATH = Path(__file__).resolve()
 
 # OPEN_WEBUI_DIR should be the directory where env.py resides (open_webui/)
-OPEN_WEBUI_DIR = _this_file_path_resolved.parent
+OPEN_WEBUI_DIR = ENV_FILE_PATH.parent
 
 # BACKEND_DIR is the parent of OPEN_WEBUI_DIR (backend/)
 BACKEND_DIR = OPEN_WEBUI_DIR.parent