Daniel Kantor
commited on
Commit
·
c2f7972
1
Parent(s):
0ba9921
backend/app/utils/model_validation.py
CHANGED
@@ -282,7 +282,8 @@ class ModelValidator:
|
|
282 |
# Check for finished submissions
|
283 |
if "finished" in existing_models:
|
284 |
for model in existing_models["finished"]:
|
285 |
-
|
|
|
286 |
error_msg = (
|
287 |
f"Model {model_id} is an official provider model "
|
288 |
f"with a completed evaluation. "
|
|
|
282 |
# Check for finished submissions
|
283 |
if "finished" in existing_models:
|
284 |
for model in existing_models["finished"]:
|
285 |
+
# TODO: remove this after official provider evaluation is implemented
|
286 |
+
if model["name"] == model_id and False:
|
287 |
error_msg = (
|
288 |
f"Model {model_id} is an official provider model "
|
289 |
f"with a completed evaluation. "
|