(self)
| 1 | class base_env: |
| 2 | |
| 3 | def __init__(self): |
| 4 | self.task_description = "" |
| 5 | self.input_description = "" |
| 6 | self.tool_names = [] |
| 7 | self.functions = [] |
| 8 | |
| 9 | def restart(self): |
| 10 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected