Result of processing a single SWE-Bench instance.
| 34 | |
| 35 | @dataclass |
| 36 | class InstanceResult: |
| 37 | """Result of processing a single SWE-Bench instance.""" |
| 38 | |
| 39 | instance_id: str |
| 40 | success: bool |
| 41 | patch: str = "" |
| 42 | error: Optional[str] = None |
| 43 | |
| 44 | |
| 45 | # ============================================================================ |
no outgoing calls
no test coverage detected