Update
This commit is contained in:
parent
7da687ab3f
commit
95b38b506e
|
@ -158,16 +158,19 @@ AIDER_LINT = bash_cmd(
|
|||
)
|
||||
|
||||
|
||||
LLM_MESSAGE_FORMAT = (
|
||||
"""{issue}\nGo ahead with the changes you deem appropriate without waiting for explicit approval."""
|
||||
)
|
||||
LLM_MESSAGE_FORMAT = """{issue}
|
||||
|
||||
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
|
||||
EVALUATOR_MODEL = 'ollama/gemma3:27b'
|
||||
|
||||
MODEL_EDIT_MODES = {
|
||||
'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',
|
||||
'--no-auto-lint',
|
||||
'--yes',
|
||||
'--disable-playwright',
|
||||
'--timeout',
|
||||
str(10_000),
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue
Block a user