We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 39a5420 + 86ae5e2 commit 75df37cCopy full SHA for 75df37c
backend/src/recommendation/capacity_planner.py
@@ -92,9 +92,9 @@ def plan_capacity(
92
)
93
return None
94
95
- # Filter to only this model
+ # Filter to only this model (case-insensitive match)
96
model_configs = [
97
- bench for bench in matching_configs if bench.model_hf_repo == model.model_id
+ bench for bench in matching_configs if bench.model_hf_repo.lower() == model.model_id.lower()
98
]
99
100
if not model_configs:
0 commit comments