Spaces:
Sleeping
Sleeping
File size: 283 Bytes
d416acc | 1 2 3 4 5 6 7 8 9 10 | """Grader for timeout task: 408 Request Timeout."""
from tasks.grading_helper import run_agent_on_incident
def grade() -> float:
"""Grade the timeout task. Returns score between 0 and 1."""
score = run_agent_on_incident("timeout")
return max(0.001, min(0.999, score))
|