fix: skip solution verification if no evaluator model is specified
This commit is contained in:
parent
b596dead11
commit
684f815ba5
|
@ -472,7 +472,9 @@ def solve_issue_in_repository(
|
||||||
if not resolution.success:
|
if not resolution.success:
|
||||||
return resolution
|
return resolution
|
||||||
|
|
||||||
# Verify whether this is a satisfactory solution
|
# Verify whether this is a satisfactory solution (skip if no evaluator model)
|
||||||
|
if not EVALUATOR_MODEL:
|
||||||
|
return resolution
|
||||||
if verify_solution(repository_path, issue_content):
|
if verify_solution(repository_path, issue_content):
|
||||||
return resolution
|
return resolution
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user