(self, system, idx)
| 43 | return repo_link, commit, instance_id, self.images[instance_id] |
| 44 | |
| 45 | def run(self, system, idx) -> Result: |
| 46 | prompt = self.construct_prompt(idx) |
| 47 | system.query_codebase(prompt) |
| 48 | prediction_patch = extract_patch(system.repo_dir) |
| 49 | return prediction_patch |
| 50 | |
| 51 | |
| 52 | def validate(self, proposed_patch, idx: int): |
no test coverage detected