Compare commits

..

No commits in common. "232622309f6a8d5b8372d3e07c82f11b49670388" and "948ab5a3826dc827c554bb119172eabf07b8c67e" have entirely different histories.

View File

@ -154,7 +154,7 @@ LLM_MESSAGE_FORMAT = (
) )
# CODE_MODEL = 'ollama/gemma3:4b' # CODE_MODEL = 'ollama/gemma3:4b'
CODE_MODEL = 'o4-mini' CODE_MODEL = 'o3'
EVALUATOR_MODEL = 'ollama/gemma3:27b' EVALUATOR_MODEL = 'ollama/gemma3:27b'
@ -386,7 +386,7 @@ def verify_solution(repository_path: Path, issue_content: str) -> bool:
repository_path, repository_path,
[ [
'Concisely summarize following changeset', 'Concisely summarize following changeset',
get_diff(repository_path, 'main', 'HEAD'), get_diff(repository_path, 'HEAD', 'main'),
], ],
) )