Compare commits

..

2 Commits

Author SHA1 Message Date
49bb3be25f fix: skip evaluation if no evaluator model is specified in solve_issue_in_repository
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
2025-04-24 11:46:46 +02:00
635eaa0c5c Initial ruff pass 2025-04-24 11:46:22 +02:00

View File

@ -472,10 +472,9 @@ def solve_issue_in_repository(
if not resolution.success:
return resolution
# Disable evaluation if no evaluator model is specified
# If no evaluator model is specified, skip evaluation and accept resolution
if not EVALUATOR_MODEL:
return resolution
# Verify whether this is a satisfactory solution
if verify_solution(repository_path, issue_content):
return resolution