Compare commits

..

2 Commits

Author SHA1 Message Date
232622309f Ruff
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 22s
2025-04-21 14:41:51 +02:00
8b35ea9cad Fix 2025-04-21 14:41:39 +02:00

View File

@ -154,7 +154,7 @@ LLM_MESSAGE_FORMAT = (
) )
# CODE_MODEL = 'ollama/gemma3:4b' # CODE_MODEL = 'ollama/gemma3:4b'
CODE_MODEL = 'o3' CODE_MODEL = 'o4-mini'
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, 'HEAD', 'main'), get_diff(repository_path, 'main', 'HEAD'),
], ],
) )