From e87feb76bc86a94c97d7407dda7f329455936e0c Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Mon, 3 Mar 2025 12:21:15 +0100 Subject: [PATCH] Update run_with_gunicorn.py --- lightrag/api/run_with_gunicorn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lightrag/api/run_with_gunicorn.py b/lightrag/api/run_with_gunicorn.py index e7143a39..50dd195d 100644 --- a/lightrag/api/run_with_gunicorn.py +++ b/lightrag/api/run_with_gunicorn.py @@ -12,8 +12,9 @@ from lightrag.kg.shared_storage import initialize_share_data, finalize_share_dat from dotenv import load_dotenv # Load environment variables from .env file -print("Current folder: {}".format(os.getcwd())) +print(f"Current folder: {os.getcwd()}") load_dotenv() +print(f"Check: {os.getenv('LLM_MODEL')}") def check_and_install_dependencies(): """Check and install required dependencies"""