(self, task_name)
| 253 | |
| 254 | class WS(TaskHandler): |
| 255 | def match(self, task_name) -> bool: |
| 256 | task_name = task_name.lower() |
| 257 | return task_name.startswith("ws") or task_name.startswith("webshop") |
| 258 | |
| 259 | def get_main_metric(self, overall_result): |
| 260 | return overall_result["custom"]["reward"] |
nothing calls this directly
no outgoing calls
no test coverage detected