This commit is contained in:
Jon Michael Aanes 2025-05-11 15:36:30 +02:00
parent 7da687ab3f
commit 95b38b506e

View File

@ -158,16 +158,19 @@ AIDER_LINT = bash_cmd(
) )
LLM_MESSAGE_FORMAT = ( LLM_MESSAGE_FORMAT = """{issue}
"""{issue}\nGo ahead with the changes you deem appropriate without waiting for explicit approval."""
) Go ahead with the changes you deem appropriate without waiting for explicit approval.
Do not draft changes beforehand; only write code once prompted for a specific file.
"""
CODE_MODEL = None CODE_MODEL = None
EVALUATOR_MODEL = 'ollama/gemma3:27b' EVALUATOR_MODEL = 'ollama/gemma3:27b'
MODEL_EDIT_MODES = { MODEL_EDIT_MODES = {
'ollama/qwen3:32b': 'diff', 'ollama/qwen3:32b': 'diff',
'ollama/hf.co/unsloth/Qwen3-30B-A3B-GGUF:Q4_K_M': 'whole', 'ollama/hf.co/unsloth/Qwen3-30B-A3B-GGUF:Q4_K_M': 'diff-fenced',
} }
@ -186,6 +189,7 @@ def create_aider_command(issue: str) -> list[str]:
'--auto-test', '--auto-test',
'--no-auto-lint', '--no-auto-lint',
'--yes', '--yes',
'--disable-playwright',
'--timeout', '--timeout',
str(10_000), str(10_000),
] ]