Files
sci-gui-agent-benchmark/desktop_env/evaluators/getters/misc.py
David Chang a6b6022ecb ver Dec26th
evaluation metric checking result file according to rules
2023-12-26 16:46:50 +08:00

9 lines
145 B
Python

from typing import TypeVar
R = TypeVar("Rule")
def get_rule(env, config: R) -> R:
"""
Returns the rule as-is.
"""
return config