(self, config: dict, environment: DockerEnvironment, game_context: GameContext)
| 45 | class MiniSWEAgent(Player): |
| 46 | """Player with agentic code editing capabilities""" |
| 47 | |
| 48 | def __init__(self, config: dict, environment: DockerEnvironment, game_context: GameContext): |
| 49 | super().__init__(config, environment=environment, game_context=game_context) |
| 50 | |
| 51 | def run(self): |