Skip to content

Commit a850b52

Browse files
committed
Add psutil dependency to fix CI import error - Issue #426
ModuleNotFoundError: No module named 'psutil' psutil is required by src/orchestrator/models/memory_optimization.py which is imported by model_registry.py. Added to dependencies in pyproject.toml. This was the root cause of ALL CI test failures.
1 parent 732b7fe commit a850b52

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ dependencies = [
6767
"imageio-ffmpeg>=0.4.9",
6868
# Additional dependencies
6969
"six>=1.16.0",
70+
"psutil>=5.9.0", # Required for memory monitoring
7071
# Google AI for generative models
7172
"google-generativeai>=0.3.0",
7273
# Data visualization

0 commit comments

Comments
 (0)