Processes a LLM-response.
(
self,
num_test_cases: int = 0,
run_llm_in_parallel: int = 1,
should_cleanup_after_eval: bool = True,
)
| 111 | |
| 112 | @abstractmethod |
| 113 | async def run( |
| 114 | self, |
| 115 | num_test_cases: int = 0, |
| 116 | run_llm_in_parallel: int = 1, |
| 117 | should_cleanup_after_eval: bool = True, |
| 118 | ) -> None: |
| 119 | """ |
| 120 | Processes a LLM-response. |
| 121 | """ |
| 122 | pass |
no outgoing calls