yangdx
commited on
Commit
·
8b3b8f9
1
Parent(s):
72ece4e
Add psutil to required dependencies for runtime monitoring
Browse files- run_with_gunicorn.py +1 -0
run_with_gunicorn.py
CHANGED
|
@@ -16,6 +16,7 @@ def check_and_install_dependencies():
|
|
| 16 |
required_packages = [
|
| 17 |
"gunicorn",
|
| 18 |
"tiktoken",
|
|
|
|
| 19 |
# Add other required packages here
|
| 20 |
]
|
| 21 |
|
|
|
|
| 16 |
required_packages = [
|
| 17 |
"gunicorn",
|
| 18 |
"tiktoken",
|
| 19 |
+
"psutil",
|
| 20 |
# Add other required packages here
|
| 21 |
]
|
| 22 |
|