Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prompting/api/scoring/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def score_response(
logger.error(f"Either uids: {uids} or chunks: {chunks} is not valid, skipping scoring")
return
uids = [int(uid) for uid in uids]
model = body.get("model")
model = body.get("model", "mrfakename/mistral-small-3.1-24b-instruct-2503-hf")
if model and model not in shared_settings.LLM_MODEL:
logger.error(f"Model {model} not available for scoring on this validator.")
return
Expand Down