From 396b8c3347f91d69888836a546164ddfc5f5b044 Mon Sep 17 00:00:00 2001 From: yangdx Date: Sun, 2 Mar 2025 12:44:58 +0800 Subject: [PATCH] Add psutil to required dependencies for runtime monitoring --- run_with_gunicorn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run_with_gunicorn.py b/run_with_gunicorn.py index 69124e31..2e4e3cf7 100755 --- a/run_with_gunicorn.py +++ b/run_with_gunicorn.py @@ -16,6 +16,7 @@ def check_and_install_dependencies(): required_packages = [ "gunicorn", "tiktoken", + "psutil", # Add other required packages here ]